diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-10-17 13:40:34 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-24 18:56:35 +0000 |
commit | 7999b32895ea523287cb01e54267f4bffb707073 (patch) | |
tree | 706ddc0efd4cf72097605c7a49ab1e762bc1a7ce /community/gst-plugins-bad | |
parent | fc19ad21e07b02c16890f1673dadc25d42f50997 (diff) | |
download | aports-7999b32895ea523287cb01e54267f4bffb707073.tar.bz2 aports-7999b32895ea523287cb01e54267f4bffb707073.tar.xz |
community/gst-plugins-bad: disable rsvg support on s390x
Closes !509
Diffstat (limited to 'community/gst-plugins-bad')
-rw-r--r-- | community/gst-plugins-bad/APKBUILD | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/community/gst-plugins-bad/APKBUILD b/community/gst-plugins-bad/APKBUILD index ecc751ad4f..521e8ebb8a 100644 --- a/community/gst-plugins-bad/APKBUILD +++ b/community/gst-plugins-bad/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=gst-plugins-bad pkgver=1.16.1 -pkgrel=1 +pkgrel=2 pkgdesc="GStreamer streaming media framework bad plug-ins" url="https://gstreamer.freedesktop.org" arch="all" @@ -11,10 +11,16 @@ replaces="gst-plugins-bad1" makedepends="alsa-lib-dev bluez-dev bzip2-dev curl-dev directfb-dev faac-dev faad2-dev flite-dev glib-dev glu-dev gsm-dev gst-plugins-base-dev gstreamer-dev libass-dev libdc1394-dev libexif-dev libmms-dev - libmodplug-dev librsvg-dev libsrtp-dev libvdpau-dev libwebp-dev + libmodplug-dev libsrtp-dev libvdpau-dev libwebp-dev libx11-dev mesa-dev meson neon-dev openssl-dev opus-dev orc-compiler orc-dev spandsp-dev tiff-dev x265-dev vulkan-loader-dev vulkan-headers wayland-dev wayland-protocols" + +case "$CARCH" in + s390x) ;; + *) makedepends="$makedepends librsvg-dev" ;; +esac + subpackages="$pkgname-lang $pkgname-dev" source="https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-$pkgver.tar.xz" ldpath="/usr/lib/gstreamer-1.0" |