PKGBUILDs/extra/gst-plugins-bad/PKGBUILD

74 lines
2.2 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
2015-12-15 05:01:25 +00:00
# - disable GL and GLX on v5/6/7
2014-09-19 18:55:32 +00:00
pkgname=gst-plugins-bad
2017-05-06 17:04:08 +00:00
pkgver=1.12.0
pkgrel=1
2014-09-19 18:55:32 +00:00
pkgdesc="GStreamer Multimedia Framework Bad Plugins"
url="https://gstreamer.freedesktop.org/"
arch=(i686 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)
_commit=da5b0d7ad3a55b958a4203659f9ff2ab270bcc91 # tags/1.12.0^0
2016-11-30 01:11:07 +00:00
source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad#commit=$_commit"
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
sha256sums=('SKIP'
'SKIP')
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
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
2015-12-15 05:01:25 +00:00
[[ $CARCH != "aarch64" ]] && CONFIG="--disable-gl --disable-glx --enable-gles2"
./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)" \
--with-package-origin="http://www.archlinux.org/" \
--with-gtk=3.0 \
--enable-experimental --enable-gtk-doc --disable-static $CONFIG
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
}