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

16 lines
No EOL
349 B
Bash
Executable file

#!/bin/bash
set -e
wget -c https://code.teampandory.com/thirdparty/ogg/-/archive/v1.3.5/ogg-v1.3.5.tar.gz
tar xvf ogg-v1.3.5.tar.gz
cd ogg-v1.3.5
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
export CFLAGS="-O3"
export CXXFLAGS="-O3"
CC="$xCC" ./configure --prefix="$PREFIX" --host="$xHOST"
make
make install