mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
16 lines
283 B
Bash
Executable File
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
|