diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libvpx/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libvpx/PKGBUILD')
-rw-r--r-- | extra/libvpx/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/libvpx/PKGBUILD b/extra/libvpx/PKGBUILD new file mode 100644 index 000000000..cbe82e07f --- /dev/null +++ b/extra/libvpx/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 113551 2011-03-09 12:18:46Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +pkgname=libvpx +pkgver=0.9.6 +pkgrel=2 +pkgdesc="The VP8 Codec SDK" +arch=('i686' 'x86_64') +url="http://www.webmproject.org/" +license=('BSD') +depends=('glibc') +makedepends=('yasm') +source=(http://webm.googlecode.com/files/${pkgname}-v${pkgver}.tar.bz2) +sha1sums=('a3522bd2b73d52381ba767ded1cbf4760e9cc6f8') + +build() { + cd "${srcdir}/${pkgname}-v${pkgver}" + ./configure --enable-vp8 \ + --enable-runtime-cpu-detect \ + --enable-shared \ + --enable-postproc \ + --enable-pic \ + --disable-install-docs \ + --disable-install-srcs + make +} + +package() { + cd "${srcdir}/${pkgname}-v${pkgver}" + make DIST_DIR="$pkgdir/usr" install + install -D -m 0644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" + chmod 644 "$pkgdir"/usr/include/vpx/*.h +} |