Files
banan-os/ports/halflife/build.sh
Bananymous bb170ba613 ports: Allow build scripts install to custom path
This will maybe allow packaging ports :)
2026-05-26 03:31:20 +03:00

19 lines
356 B
Bash
Executable File

#!/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="$DESTDIR/home/user/halflife" || exit 1
}