mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-25 11:19:59 +01:00
cc53d59532
* updated build_apple.sh to copy over SDL2 from the Frameworks folder that it was installed in by dep_apple.sh
17 lines
423 B
Bash
Executable File
17 lines
423 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. scripts/lib.sh
|
|
|
|
cd $GITHUB_WORKSPACE || die
|
|
|
|
pushd hlsdk || die
|
|
./waf configure build install --destdir=../bin || die
|
|
popd
|
|
|
|
./waf configure --enable-utils --enable-tests --enable-lto build install --destdir=bin || die_configure
|
|
|
|
cp -vr /Library/Frameworks/SDL2.framework bin
|
|
|
|
mkdir -p artifacts/
|
|
tar -cJvf artifacts/xash3d-fwgs-apple-$ARCH.tar.xz -C bin . # skip the bin directory from resulting tar archive
|