PKGBUILDs/alarm/gst-imx/PKGBUILD
2014-09-22 01:40:03 +00:00

38 lines
1 KiB
Bash

# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
buildarch=4
pkgname=gst-imx
_commit=4e25dc2db07e1b28796218de4d123ea26d57dbe9
pkgver=0.9.9
pkgrel=1
pkgdesc="GStreamer plugins for i.MX platforms"
arch=('armv7h')
license=('LGPL')
url="https://github.com/Freescale/gstreamer-imx"
depends=('gst-plugins-base-libs' 'libfslvpuwrap' 'gpu-viv-bin-mx6q-fb')
makedepends=('python2' 'linux-headers-imx6-fsl')
source=("https://github.com/Freescale/gstreamer-imx/archive/${_commit}.tar.gz")
md5sums=('029ea8088221191d69f58c485a58bb57')
LDFLAGS+=' -L/opt/fsl/lib'
CPPFLAGS+=' -I/opt/fsl/include'
build() {
cd gstreamer-imx-${_commit}
export PKG_CONFIG_PATH='/opt/fsl/lib/pkgconfig'
python2 waf configure --prefix=/usr \
--with-package-name="GStreamer plugins for i.MX platforms" \
--with-package-origin="https://github.com/archlinuxarm/PKGBUILDs/tree/master/alarm/gst-imx" \
--egl-platform=fb
python2 waf build $MAKEFLAGS
}
package() {
cd gstreamer-imx-${_commit}
python2 waf install --destdir="$pkgdir"
}