summaryrefslogtreecommitdiff
path: root/libtheora/Pkgfile
blob: 40daa5f6735a61f46d526a2b41659c97179472fb (plain)
    1 # Description: A free and open video compression format from the Xiph.org Foundation.
    2 # URL: http://www.theora.org/
    3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
    4 # Packager: Matt Housh, jaeger at crux dot nu
    5 # Depends on: libvorbis
    6 
    7 name=libtheora
    8 version=1.0
    9 release=1
   10 source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.bz2)
   11 
   12 build() {
   13 	cd $name-$version
   14 
   15 	./configure \
   16 		--prefix=/usr \
   17 		--mandir=/usr/man \
   18 		--disable-static \
   19 		--disable-sdl \
   20 		--disable-examples
   21 
   22 	make
   23 	make DESTDIR=$PKG install
   24 	rm -r $PKG/usr/share
   25 }

Generated by cgit