gst-omx: unify rpi build options, fix linker paths
This commit is contained in:
parent
48d2050779
commit
efb9151ef1
|
@ -1,9 +1,10 @@
|
|||
# Template file for 'gst-omx'
|
||||
pkgname=gst-omx
|
||||
version=1.16.2
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
configure_args="--disable-examples"
|
||||
configure_args="--disable-examples
|
||||
$(vopt_if rpi --with-omx-target=rpi --with-omx-target=generic)"
|
||||
hostmakedepends="pkg-config python glib-devel"
|
||||
makedepends="gst-plugins-base1-devel"
|
||||
short_desc="GStreamer OpenMAX IL wrapper plugin (1.x)"
|
||||
|
@ -13,15 +14,15 @@ homepage="https://gstreamer.freedesktop.org"
|
|||
distfiles="${homepage}/src/${pkgname}/${pkgname}-${version}.tar.xz"
|
||||
checksum=11ed411a2eba75610d72331eeb14ff05e2df28f4fd05cb69225a88bec6d27439
|
||||
|
||||
build_options="rpi"
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
i686*|x86_64*|aarch64*|ppc*)
|
||||
# XXX bellagio target
|
||||
configure_args+=" --with-omx-target=generic"
|
||||
;;
|
||||
armv[67]*)
|
||||
configure_args+=" --with-omx-target=rpi"
|
||||
makedepends+=" rpi-firmware rpi-userland-devel"
|
||||
export PKG_CONFIG_PATH="$XBPS_CROSS_BASE/opt/vc/lib/pkgconfig"
|
||||
CFLAGS="-I${XBPS_CROSS_BASE}/opt/vc/include/IL"
|
||||
;;
|
||||
armv[67]*) build_options_default="rpi" ;;
|
||||
esac
|
||||
|
||||
if [ "$build_option_rpi" ]; then
|
||||
makedepends+=" rpi-firmware rpi-userland-devel"
|
||||
export PKG_CONFIG_PATH="$XBPS_CROSS_BASE/opt/vc/lib/pkgconfig"
|
||||
CFLAGS="-I${XBPS_CROSS_BASE}/opt/vc/include/IL"
|
||||
LDFLAGS="-Wl,-rpath=/opt/vc/lib"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue