3000th COMMIT: ports: Add halflife port

This commit is contained in:
2025-07-31 22:45:58 +03:00
parent 935f69e011
commit 987cc3c237
7 changed files with 433 additions and 0 deletions

18
ports/halflife/build.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash ../install.sh
NAME='halflife'
VERSION='git'
DOWNLOAD_URL="https://github.com/FWGS/hlsdk-portable.git#343b09bc4de15ecf310ab97e759bfdef6e883bd8"
DEPENDENCIES=('xash3d-fwgs')
configure() {
./waf configure -T release || exit 1
}
build() {
./waf build || exit 1
}
install() {
./waf install --destdir=$BANAN_SYSROOT/home/user/halflife || exit 1
}