#Packager: George Vlahavas pkgname=libvpx pkgver=1.1.0 pkgrel=1rl source=("http://webm.googlecode.com/files/libvpx-v$pkgver.tar.bz2") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo" "patents") url=http://code.google.com/p/webm/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libvpx (VP8 video codec)" "VP8 is an open video codec, originally developed by On2 and released" "as open source by Google Inc. It is the successor of the VP3 codec, on" "which the Theora codec was based." ) build() { cd $startdir/src/${pkgname}-v${pkgver} ./configure --prefix=/usr --enable-vp8 \ --enable-postproc \ --enable-pic \ --disable-install-docs \ --disable-install-srcs # ./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} --disable-examples --disable-debug-libs --disable-debug --enable-postproc --enable-vp8 --enable-shared make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg # no static lib # rm $startdir/pkg/usr/lib${LIBDIRSUFFIX}/*.a # fix ownerships/permissions # chowm root:root $startdir/pkg/usr/include/vpx/* # chmod 644 $startdir/pkg/usr/include/vpx/* }