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
|
2010-07-10 13:11:54 +10:00
|
|
|
version=1.1.1
|
2008-11-04 22:27:41 +11:00
|
|
|
release=1
|
2010-07-10 13:11:54 +10:00
|
|
|
source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.xz)
|
2008-02-20 00:33:35 +11:00
|
|
|
|
|
|
|
build() {
|
2008-11-04 22:27:41 +11:00
|
|
|
cd $name-$version
|
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-examples
|
2008-02-20 00:33:35 +11:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2010-07-10 13:11:54 +10:00
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
rmdir $PKG/usr/share
|
2008-02-20 00:33:35 +11:00
|
|
|
}
|