ladybird/Ports/doom/doom.sh
Andreas Kling 615d823b55 Ports: Port DOOM
Okay, here's something we've all been waiting for. A DOOM port :^)

It's based on the "doomgeneric" port and doesn't have sound support at
the moment, but it does let you play DOOM on Serenity.

Note that you have to provide DOOM1.WAD yourself.

Fixes #33.
2019-09-09 19:52:08 +02:00

17 lines
307 B
Bash
Executable file

#!/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