blob: 597ace4b1c225f85a1ee08f5c5cc0443b9dc5eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Backend VDPAU pour l'API VA
# URL: http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/
# Maintainer: NutyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on: libva, libvdpau
# Run on: libva,libvdpau
name=vdpau-video
version=0.7.3
release=1
source=(http://www.splitted-desktop.com/~gbeauchesne/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-glx \
--enable-tracer
make
make DESTDIR=$PKG install
}
|