blob: a5f0c6f202ad2b2feb35ef9fd5327d8f8148b62f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
PORT_DIR=doom
fetch() {
run_fetch_git "https://github.com/ozkl/doomgeneric.git"
run_patch serenity-port.patch -p1
}
configure() {
echo ""
}
build() {
run_make -C doomgeneric/
}
install() {
run_make_install -C doomgeneric/ DESTDIR="$SERENITY_ROOT"/Root
}
. ../.port_include.sh
|