blob: 052c38d2141880dac5a05bad99fa91dd571616d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $Id: PKGBUILD 218239 2014-07-27 18:40:23Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgbase=gstreamer-vaapi
pkgname=(gst-vaapi gstreamer0.10-vaapi)
pkgver=0.5.9pre
pkgrel=2
pkgdesc="GStreamer Multimedia Framework VA Plugins"
arch=(i686 x86_64)
license=(LGPL)
url="http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/"
makedepends=(gst-plugins-base gst-plugins-bad gstreamer0.10-base-plugins gstreamer0.10-bad-plugins
libva libxrandr libvpx git)
options=(!emptydirs)
source=(git://gitorious.org/vaapi/${pkgbase}.git#commit=5ffa82b)
sha1sums=('SKIP')
prepare() {
mkdir build build-0.10
cd $pkgbase
sed -i 's/^1.3)/1.4)/' configure.ac
NO_CONFIGURE=1 ./autogen.sh
}
_build() (
cd "$1"; shift
../$pkgbase/configure --prefix=/usr \
--disable-static \
--disable-builtin-libvpx \
"$@"
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
)
build() {
_build build
_build build-0.10 --with-gstreamer-api=0.10 --disable-wayland
}
check() {
make -C build -k check
make -C build-0.10 -k check
}
package_gst-vaapi() {
depends=(gst-plugins-base gst-plugins-bad libva libxrandr libvpx)
make -C build DESTDIR="$pkgdir" install
}
package_gstreamer0.10-vaapi() {
depends=(gstreamer0.10-base-plugins gstreamer0.10-bad-plugins libva libxrandr libvpx)
make -C build-0.10 DESTDIR="$pkgdir" install
}
|