Files
ladybird/Ports/doom/doom.sh
Andreas Kling 24cc61aae2 Ports: Point doom port to our own SerenityDOOM fork
This will make it easier to make improvements to the port.
2019-09-14 10:05:02 +02:00

16 lines
283 B
Bash
Executable File

#!/bin/sh
PORT_DIR=SerenityDOOM
fetch() {
run_fetch_git "https://github.com/SerenityOS/SerenityDOOM.git"
}
configure() {
echo ""
}
build() {
run_make -C doomgeneric/
}
install() {
run_make_install -C doomgeneric/ DESTDIR="$SERENITY_ROOT"/Root
}
. ../.port_include.sh