summaryrefslogtreecommitdiff
path: root/libtheora-32/Pkgfile
blob: 8a41b17c8dd5c4fc062e2b4ad4f74760da484fe8 (plain)
    1 # Description: A free and open video compression format from the Xiph.org Foundation.
    2 # URL: http://www.theora.org/
    3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
    4 # Depends on: libvorbis-32 libtheora
    5 
    6 name=libtheora-32
    7 version=1.1.1
    8 release=1
    9 source=(https://downloads.xiph.org/releases/theora/libtheora-$version.tar.xz)
   10 
   11 build() {
   12 	cd libtheora-$version
   13 
   14 	./configure \
   15 		--prefix=/usr \
   16 		--libdir=/usr/lib32 \
   17 		--mandir=/usr/man \
   18 		--disable-examples \
   19 		--host=i686-pc-linux-gnu
   20 
   21 	make
   22 	make DESTDIR=$PKG install
   23 	rm -r $PKG/usr/share/doc
   24 	rmdir $PKG/usr/share
   25 
   26 	rm -rf $PKG/{etc,var} $PKG/usr/{bin,etc,include,man,sbin,share}
   27 }

Generated by cgit