Luna/ports/doomgeneric/PACKAGE
apio 5b94217316
All checks were successful
Build and test / build (push) Successful in 1m34s
ports: Add doomgeneric port
2024-03-31 13:40:43 +02:00

33 lines
448 B
Plaintext

# Basic information
name="doomgeneric"
version="0.0.1"
dependencies=(libwind)
# Download options
format="git"
url="https://github.com/ozkl/doomgeneric.git"
# Build instructions
do_patch()
{
patch -ui $portdir/doomgeneric.patch -p 1 -d $srcdir
}
do_configure()
{
:
}
do_build()
{
cd $srcdir/doomgeneric
make
}
do_install()
{
cd $srcdir/doomgeneric
mkdir -p $installdir/usr/bin/
cp doomgeneric $installdir/usr/bin/
}