2008-02-20 00:33:35 +11:00
|
|
|
# Description: A free and open video compression format from the Xiph.org Foundation.
|
|
|
|
# URL: http://www.theora.org/
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
2008-02-20 00:33:35 +11:00
|
|
|
# Packager: Matt Housh, jaeger at crux dot nu
|
2008-03-14 21:08:33 +11:00
|
|
|
# Depends on: libvorbis
|
2008-02-20 00:33:35 +11:00
|
|
|
|
|
|
|
name=libtheora
|
2008-10-29 21:16:43 +11:00
|
|
|
version=1.0RC2
|
2008-10-08 06:38:21 +11:00
|
|
|
release=2
|
2008-10-29 21:16:43 +11:00
|
|
|
source=(http://downloads.xiph.org/releases/theora/libtheora-$version.tar.bz2)
|
2008-02-20 00:33:35 +11:00
|
|
|
|
|
|
|
build() {
|
2008-10-29 21:16:43 +11:00
|
|
|
cd $name-1.0
|
2008-10-08 06:38:21 +11:00
|
|
|
|
2008-02-20 00:33:35 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2008-05-11 14:17:44 +10:00
|
|
|
--mandir=/usr/man \
|
|
|
|
--disable-static \
|
|
|
|
--disable-sdl \
|
|
|
|
--disable-examples
|
2008-02-20 00:33:35 +11:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2008-05-11 14:17:44 +10:00
|
|
|
rm -r $PKG/usr/share
|
2008-02-20 00:33:35 +11:00
|
|
|
}
|
|
|
|
|