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/libvdpau |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libvdpau')
-rw-r--r-- | extra/libvdpau/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/libvdpau/PKGBUILD b/extra/libvdpau/PKGBUILD new file mode 100644 index 000000000..7500270bc --- /dev/null +++ b/extra/libvdpau/PKGBUILD @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=libvdpau +pkgver=0.4.1 +pkgrel=1 +pkgdesc="Nvidia VDPAU library" +arch=(i686 x86_64) +url=http://cgit.freedesktop.org/~aplattner/libvdpau +depends=('gcc-libs') +conflicts=('nvidia-utils<190.42-2') +options=('!libtool' 'force') +license=('custom') +source=(http://people.freedesktop.org/~aplattner/vdpau/${pkgname}-${pkgver}.tar.gz) +makedepends=('libx11') +sha256sums=('061b6f86c64912f79851bfefcac4f77b401e9a939dbbb7b1ec795bc7d5aaf59b') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make + make DESTDIR="${pkgdir}" install + + install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} |