forked from ports/contrib
31 lines
698 B
Plaintext
31 lines
698 B
Plaintext
# Description: A free and open video compression format from the Xiph.org Foundation.
|
|
# URL: http://www.theora.org/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: libvorbis
|
|
|
|
name=libtheora
|
|
version=1.0RC1
|
|
release=2
|
|
source=(http://downloads.xiph.org/releases/theora/libtheora-$version.tar.bz2
|
|
libtheora-1.0RC1-x86_64-missing-file.patch)
|
|
|
|
build() {
|
|
cd libtheora-$version
|
|
|
|
patch -p 1 -i $SRC/libtheora-1.0RC1-x86_64-missing-file.patch
|
|
automake
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-static \
|
|
--disable-sdl \
|
|
--disable-examples
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share
|
|
}
|
|
|