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>
|
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
|
2018-03-25 00:51:37 +00:00
|
|
|
pkgver=1.14.0
|
2018-03-30 16:35:42 +00:00
|
|
|
pkgrel=2
|
2014-09-19 18:55:32 +00:00
|
|
|
pkgdesc="GStreamer Multimedia Framework Bad Plugins"
|
2016-10-12 12:37:09 +00:00
|
|
|
url="https://gstreamer.freedesktop.org/"
|
2017-12-19 22:17:38 +00:00
|
|
|
arch=(x86_64)
|
2016-10-12 12:37:09 +00:00
|
|
|
license=(LGPL)
|
|
|
|
depends=(mjpegtools gst-plugins-base-libs curl chromaprint libmms faad2 celt libdca libdvdnav
|
2018-03-25 00:51:37 +00:00
|
|
|
libmodplug libgme wayland libofa openjpeg2 libwebp libsrtp gnutls sbc rtmpdump libgudev
|
|
|
|
libexif libdvdread libvdpau libmpeg2 wildmidi ladspa openal libusb vulkan-icd-loader
|
|
|
|
libfdk-aac faac soundtouch spandsp neon webrtc-audio-processing libdc1394 libmpcdec zvbi
|
2018-03-30 16:35:42 +00:00
|
|
|
openexr libbs2b libnice lcms2 bluez-libs glu srt)
|
2018-03-25 00:51:37 +00:00
|
|
|
makedepends=(python gtk-doc autoconf-archive git gobject-introspection gtk3 vulkan-headers
|
|
|
|
vulkan-validation-layers librsvg libtiger zbar fluidsynth lilv opencv)
|
|
|
|
_commit=48cde372d6f5b9feff464bffb734686e0cbf0ca1 # tags/1.14.0^0
|
2016-11-30 01:11:07 +00:00
|
|
|
source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad#commit=$_commit"
|
2018-02-01 19:36:10 +00:00
|
|
|
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
|
2016-10-12 12:37:09 +00:00
|
|
|
sha256sums=('SKIP'
|
2018-02-01 19:36:10 +00:00
|
|
|
'SKIP')
|
2016-10-12 12:37:09 +00:00
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd $pkgname
|
|
|
|
git describe --tags | sed 's/-/+/g'
|
|
|
|
}
|
2015-06-23 02:02:11 +00:00
|
|
|
|
|
|
|
prepare() {
|
2016-10-12 12:37:09 +00:00
|
|
|
cd $pkgname
|
|
|
|
|
|
|
|
git submodule init
|
|
|
|
git config --local submodule.common.url "$srcdir/gst-common"
|
|
|
|
git submodule update
|
|
|
|
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
2015-06-23 02:02:11 +00:00
|
|
|
}
|
2014-09-19 18:55:32 +00:00
|
|
|
|
|
|
|
build() {
|
2016-10-12 12:37:09 +00:00
|
|
|
cd $pkgname
|
2018-03-25 00:51:37 +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/" \
|
2016-10-12 12:37:09 +00:00
|
|
|
--with-gtk=3.0 \
|
2018-03-25 00:51:37 +00:00
|
|
|
--enable-experimental \
|
|
|
|
--disable-static
|
2014-09-19 18:55:32 +00:00
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2016-10-12 12:37:09 +00:00
|
|
|
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() {
|
2016-10-12 12:37:09 +00:00
|
|
|
cd $pkgname
|
|
|
|
make DESTDIR="$pkgdir" install
|
2014-09-19 18:55:32 +00:00
|
|
|
}
|