24 lines
476 B
Plaintext
24 lines
476 B
Plaintext
# Description: A free and open video compression format from the Xiph.org Foundation.
|
|
# URL: https://www.theora.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libvorbis
|
|
|
|
name=libtheora
|
|
version=1.1.1
|
|
release=1
|
|
source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-examples
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
rmdir $PKG/usr/share
|
|
}
|