PKGBUILDs/extra/gst-plugins-bad/PKGBUILD

69 lines
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>
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-05-17 17:58:39 +00:00
pkgver=1.14.1
2018-05-29 13:02:11 +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
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)
2018-05-17 17:58:39 +00:00
_commit=fd178617d0fc3bed781d566def792f90d7825d01 # tags/1.14.1^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")
sha256sums=('SKIP'
2018-02-01 19:36:10 +00:00
'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
NOCONFIGURE=1 ./autogen.sh
2015-06-23 02:02:11 +00:00
}
2014-09-19 18:55:32 +00:00
build() {
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/" \
--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() {
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
}