2016-10-13 01:20:30 +00:00
|
|
|
# $Id$
|
2017-05-06 17:06:16 +00:00
|
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
2016-10-13 01:20:30 +00:00
|
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich
|
|
|
|
# - remove valgrind makedepend
|
|
|
|
|
|
|
|
pkgname=gstreamer
|
2017-09-19 18:27:20 +00:00
|
|
|
pkgver=1.12.3
|
2016-10-13 01:20:30 +00:00
|
|
|
pkgrel=1
|
2017-05-06 17:06:16 +00:00
|
|
|
pkgdesc="GStreamer open-source multimedia framework core library"
|
2016-10-13 01:20:30 +00:00
|
|
|
url="https://gstreamer.freedesktop.org/"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
license=(LGPL)
|
2017-05-06 17:06:16 +00:00
|
|
|
depends=(libxml2 glib2 libunwind libcap libelf)
|
|
|
|
makedepends=(intltool pkgconfig gtk-doc gobject-introspection autoconf-archive git
|
|
|
|
bash-completion)
|
|
|
|
checkdepends=(gmp gsl gtk3)
|
2017-09-19 18:27:20 +00:00
|
|
|
_commit=a6653b617cf42de70be087188d41c1cff6193b05 # tags/1.12.3^0
|
2016-10-13 01:20:30 +00:00
|
|
|
install=gstreamer.install
|
2016-11-30 01:10:50 +00:00
|
|
|
source=("git+https://anongit.freedesktop.org/git/gstreamer/gstreamer#commit=$_commit"
|
|
|
|
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
|
2016-10-13 01:20:30 +00:00
|
|
|
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
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib \
|
|
|
|
--with-package-name="GStreamer (Arch Linux)" \
|
2017-07-14 12:51:24 +00:00
|
|
|
--with-package-origin="https://www.archlinux.org/" \
|
2016-10-13 01:20:30 +00:00
|
|
|
--enable-gtk-doc --disable-static
|
|
|
|
|
|
|
|
# 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
|
|
|
|
make check
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|