blob: 29ce5a37f5983a736cbce69768943991ae9b5244 (
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
|
# $Id$
# Maintainer: Sean V Kelley <seanvk@posteo.de>
pkgname=libyami-utils
pkgver=1.3.2
pkgrel=5
pkgdesc="Intel VA-API Media Applications and Scripts for libyami"
arch=('i686' 'x86_64')
url="https://github.com/01org/libyami-utils"
license=('Apache')
depends=('libbsd' 'libyami' 'ffmpeg')
options=('!emptydirs')
changelog=
source=($url/archive/$pkgver.tar.gz)
sha256sums=('e63e7aa96db61409ac46f58671974f6a44d7cc7625782209d2ad4e0cfe97c706')
build() {
export CXXFLAGS="-Wno-error"
export LD_RUN_PATH='$ORIGIN/lib/'
cd $pkgname-$pkgver
sh autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--with-package-name="Libyami Media Utils (Arch Linux)" \
--with-package-origin="http://www.archlinux.org/" \
--enable-avformat
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
unset LD_RUN_PATH
}
check() {
cd "$pkgname-$pkgver"
make check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|