
* updated build_apple.sh to copy over SDL2 from the Frameworks folder that it was installed in by dep_apple.sh
16 lines
423 B
Bash
Executable file
16 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
|