18 lines
427 B
Plaintext
18 lines
427 B
Plaintext
# Description: A free and open video compression format from the Xiph.org Foundation
|
|
# URL: http://www.theora.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: libogg, libvorbis
|
|
|
|
name=libtheora
|
|
version=1.0beta2
|
|
release=1
|
|
source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share
|
|
}
|