16 lines
No EOL
349 B
Bash
Executable file
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 |