16 lines
260 B
Bash
16 lines
260 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c
|
||
|
|
||
|
libtoolize --force
|
||
|
aclocal -I m4
|
||
|
autoconf --force
|
||
|
automake --force --add-missing
|
||
|
|
||
|
./configure \
|
||
|
--enable-shared \
|
||
|
--enable-static \
|
||
|
--build="$BUILD" \
|
||
|
--host="$HOST" \
|
||
|
--prefix="$PREFIX"
|