PKGBUILDs/extra/gst-plugins-bad/PKGBUILD

78 lines
2.4 KiB
Bash
Raw Normal View History

2014-09-19 18:55:32 +00:00
# $Id$
2016-04-09 20:22:07 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
2014-09-19 18:55:32 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - drop valgrind makedepend
2017-08-15 18:57:42 +00:00
# - remove --enable-gtk-doc from configure - broken with latest gtk-doc
2014-09-19 18:55:32 +00:00
pkgname=gst-plugins-bad
2017-12-19 22:17:38 +00:00
pkgver=1.12.4
2018-01-14 16:27:26 +00:00
pkgrel=2
2014-09-19 18:55:32 +00:00
pkgdesc="GStreamer Multimedia Framework Bad Plugins"
url="https://gstreamer.freedesktop.org/"
2017-12-19 22:17:38 +00:00
arch=(x86_64)
license=(LGPL)
depends=(mjpegtools gst-plugins-base-libs curl chromaprint libmms faad2 celt libdca libdvdnav
libmodplug libgme wayland libofa openjpeg2 libwebp libsrtp gnutls glu sbc rtmpdump
2017-05-06 17:04:08 +00:00
libgudev graphene schroedinger libexif libdvdread libvdpau libmpeg2 wildmidi ladspa
openal libusb vulkan-icd-loader libfdk-aac faac soundtouch spandsp neon
webrtc-audio-processing libdc1394 libmpcdec zvbi)
makedepends=(python gobject-introspection gtk-doc git autoconf-archive vulkan-headers
gtk3 clutter librsvg libtiger qt5-declarative qt5-x11extras qt5-wayland zbar
fluidsynth lilv opencv openexr)
2017-12-19 22:17:38 +00:00
_commit=cbdbd8d4f6893e6042dbf7b8258e23a8d2aaf081 # tags/1.12.4^0
2016-11-30 01:11:07 +00:00
source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad#commit=$_commit"
2018-01-14 16:27:26 +00:00
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common"
srtp-Support-libsrtp2.patch)
sha256sums=('SKIP'
2018-01-14 16:27:26 +00:00
'SKIP'
'12cb72b5972dcfbffa28176c5db9d701ebdbfb9dd8f26acf5500cc541abc87e7')
pkgver() {
cd $pkgname
git describe --tags | sed 's/-/+/g'
}
2015-06-23 02:02:11 +00:00
prepare() {
cd $pkgname
git submodule init
git config --local submodule.common.url "$srcdir/gst-common"
git submodule update
2018-01-14 16:27:26 +00:00
# libsrtp2
git cherry-pick -n 029e01743f 17121ebc57
patch -Np1 -i ../srtp-Support-libsrtp2.patch
2017-05-06 17:04:08 +00:00
sed -i 's/cmu_us_kal/&16/g' configure.ac ext/flite/gstflitetestsrc.c
NOCONFIGURE=1 ./autogen.sh
2015-06-23 02:02:11 +00:00
}
2014-09-19 18:55:32 +00:00
build() {
cd $pkgname
2014-09-19 18:55:32 +00:00
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib \
2014-09-19 18:55:32 +00:00
--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
2017-07-14 13:33:47 +00:00
--with-package-origin="https://www.archlinux.org/" \
--with-gtk=3.0 \
2017-08-16 00:17:48 +00:00
--enable-experimental --disable-static
2014-09-19 18:55:32 +00:00
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
check() {
cd $pkgname
2017-05-06 17:04:08 +00:00
# bad tests are bad
#make -k check || :
2014-09-19 18:55:32 +00:00
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
2014-09-19 18:55:32 +00:00
}