18 lines
426 B
Plaintext
18 lines
426 B
Plaintext
# Description: An open video codec from the xiph.org foundation's ogg project
|
|
# URL: http://www.theora.org/
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: libogg, libvorbis
|
|
|
|
name=libtheora
|
|
version=1.0alpha7
|
|
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
|
|
}
|