mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
71 lines
2.1 KiB
Bash
71 lines
2.1 KiB
Bash
# $Id$
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - drop valgrind makedepend
|
|
# - disable GL and GLX on v5/6/7
|
|
|
|
pkgname=gst-plugins-bad
|
|
pkgver=1.10.0
|
|
pkgrel=1
|
|
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
|
|
libgudev graphene)
|
|
makedepends=(schroedinger libexif libdvdread libvdpau libmpeg2 python wildmidi librsvg
|
|
gobject-introspection gtk-doc gtk3 clutter libtiger ladspa openal libusb
|
|
qt5-declarative qt5-x11extras qt5-wayland vulkan-headers vulkan-icd-loader zbar
|
|
autoconf-archive git libfdk-aac faac soundtouch spandsp fluidsynth neon)
|
|
options=(!emptydirs)
|
|
_commit=f2df164f88faa7798e0ce94e0530ff84a4c29f3d # tags/1.10.0^0
|
|
source=("git://anongit.freedesktop.org/gstreamer/gst-plugins-bad#commit=$_commit"
|
|
"gst-common::git://anongit.freedesktop.org/gstreamer/common")
|
|
sha256sums=('SKIP'
|
|
'SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
|
|
git submodule init
|
|
git config --local submodule.common.url "$srcdir/gst-common"
|
|
git submodule update
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
|
|
[[ $CARCH != "aarch64" ]] && CONFIG="--disable-gl --disable-glx --enable-gles2"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib \
|
|
--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
|
|
|
|
# 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
|
|
# don't have a camera for the camerabin test
|
|
make -k check || :
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="$pkgdir" install
|
|
}
|