16 lines
349 B
Bash
16 lines
349 B
Bash
|
#!/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
|