blob: 86843dec203f7bbf678330947587ac42e270c60a (
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: mesa, libva, libvdpau
# Run on: mesa,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
}
|