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>
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-07-20 18:18:29 +00:00
pkgver=1.14.2
2018-08-26 23:43:37 +00:00
pkgrel=3
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-07-20 18:18:29 +00:00
_commit=513ef5efdf85f9af4a016e8ae69f28cf16c9ec58 # tags/1.14.2^0
2016-11-30 01:11:07 +00:00
source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad#commit=$_commit"
2018-07-20 18:18:29 +00:00
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common"
missing-includes.diff)
sha256sums=('SKIP'
2018-07-20 18:18:29 +00:00
'SKIP'
'acf625d58611372532bc76e7276dacd69d2a9f7dee88ed9e2e8ecae0881476a3')
pkgver() {
cd $pkgname
git describe --tags | sed 's/-/+/g'
}
2015-06-23 02:02:11 +00:00
prepare() {
cd $pkgname
2018-07-20 18:18:29 +00:00
# error: CV_RGB was not declared in this scope
patch -Np1 -i ../missing-includes.diff
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
}