buildscripts/slang.sh
2023-12-03 23:10:57 +01:00

17 lines
No EOL
336 B
Bash
Executable file

#!/bin/bash
wget -c "https://code.teampandory.com/thirdparty/S-Lang/-/archive/src/pandory500/S-Lang-src-pandory500.tar.gz"
tar xvf S-Lang-src-pandory500.tar.gz
cd S-Lang-src-pandory500
export CFLAGS="-O3"
export CXXFLAGS="-O3"
export CC="$xCC"
make clean
./configure --host="$xHOST" --prefix="$PREFIX"
make -j$(nproc)
make install