22 lines
No EOL
501 B
Bash
Executable file
22 lines
No EOL
501 B
Bash
Executable file
#!/bin/bash
|
|
git clone https://code.teampandory.com/thirdparty/tremor.git
|
|
cd tremor
|
|
git checkout pandory
|
|
|
|
export CFLAGS="-I$PREFIX/include -O3"
|
|
export CPPFLAGS="-I$PREFIX/include -O3"
|
|
export LDFLAGS="-L$PREFIX/lib"
|
|
|
|
export PKG_CONFIG="pkg-config"
|
|
export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
|
|
|
|
libtoolize --force
|
|
aclocal
|
|
autoheader
|
|
automake --force-missing --add-missing
|
|
autoconf
|
|
|
|
sed -i 's/XIPH_PATH_OGG/#XIPH_PATH_OGG/g' ./configure
|
|
./configure --prefix="$PREFIX" --host="$xHOST"
|
|
make
|
|
make install |