blob: dbb55918374087ca2587a86b18d3f7c7686e2229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
|