buildscripts/flac.sh

16 lines
345 B
Bash
Raw Normal View History

2023-12-03 23:10:57 +01:00
#!/bin/bash
# fails if using tgz. stick to git
git clone https://code.teampandory.com/thirdparty/flac.git
set -e
cd flac
git checkout 1.3.4
export CFLAGS="-I$PREFIX/include -O3"
export CPPFLAGS="-I$PREFIX/include -O3"
export LDFLAGS="-L$PREFIX/lib -logg"
./autogen.sh
CC="$xCC" ./configure --prefix="$PREFIX" --host="$xHOST"
make
make install