core/vdpau-video/PKGBUILD
2010-09-11 02:25:44 +02:00

31 lines
892 B
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=vdpau-video
pkgver=0.6.10
pkgrel=1
pkgdesc="VDPAU backend for VA API"
arch=('i686' 'x86_64')
url="http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/"
license=('GPL')
depends=('libva' 'libvdpau')
makedepends=('mesa')
options=('!libtool')
source=(http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/$pkgname-latest.tar.gz
vaDriverInit-func-fix.patch)
md5sums=('938c8c02da6fe650866ca627ef834121'
'9e0ab0bc4abae263d0bcc822af3f0ee5')
build() {
cd "$srcdir/$pkgname-$pkgver"
patch -Np0 -i $srcdir/vaDriverInit-func-fix.patch
autoreconf -fi
./configure --prefix=/usr --enable-glx
make
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: