mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=gst-imx
|
|
pkgver=0.12.0.r8.gd3fbc6f
|
|
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' 'gst-plugins-bad' 'libimxvpuapi' 'gpu-viv-bin-mx6q-fb')
|
|
makedepends=('python2' 'linux-headers-imx6-fsl' 'git')
|
|
source=('git+https://github.com/Freescale/gstreamer-imx.git')
|
|
md5sums=('SKIP')
|
|
|
|
LDFLAGS+=' -L/opt/fsl/lib'
|
|
CPPFLAGS+=' -I/opt/fsl/include'
|
|
|
|
pkgver() {
|
|
cd gstreamer-imx
|
|
( set -o pipefail
|
|
git describe --long --tags 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
|
)
|
|
}
|
|
|
|
build() {
|
|
cd gstreamer-imx
|
|
|
|
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
|
|
python2 waf install --destdir="$pkgdir"
|
|
}
|