contrib/libtheora/Pkgfile

31 lines
698 B
Plaintext
Raw Normal View History

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