mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
38 lines
1 KiB
Bash
38 lines
1 KiB
Bash
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=gst-imx
|
|
_commit=0a7330439cec5e3bb955828a1fc8b7fe55d0d8e3
|
|
pkgver=0.10.0
|
|
pkgrel=6
|
|
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=('643ceb9d45db45cf58f3f7622d881cbb')
|
|
|
|
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 \
|
|
--kernel-headers=/usr/include
|
|
|
|
python2 waf build $MAKEFLAGS
|
|
}
|
|
|
|
package() {
|
|
cd gstreamer-imx-${_commit}
|
|
python2 waf install --destdir="$pkgdir"
|
|
}
|