PKGBUILDs/extra/gstreamer/PKGBUILD

63 lines
1.5 KiB
Bash
Raw Normal View History

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
2018-10-03 12:54:20 +00:00
pkgver=1.14.4
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/"
2017-12-10 04:46:37 +00:00
arch=(x86_64)
2016-10-13 01:20:30 +00:00
license=(LGPL)
2017-05-06 17:06:16 +00:00
depends=(libxml2 glib2 libunwind libcap libelf)
2018-03-25 00:53:32 +00:00
makedepends=(gtk-doc gobject-introspection autoconf-archive git bash-completion)
2017-05-06 17:06:16 +00:00
checkdepends=(gmp gsl gtk3)
2018-10-03 12:54:20 +00:00
_commit=3c586dec930c5c253da0cf49e3f3846243f0ecf5 # tags/1.14.4^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
2018-03-25 00:53:32 +00:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib \
2016-10-13 01:20:30 +00:00
--with-package-name="GStreamer (Arch Linux)" \
2017-07-14 12:51:24 +00:00
--with-package-origin="https://www.archlinux.org/" \
2018-03-25 00:53:32 +00:00
--enable-gtk-doc \
--disable-static
2016-10-13 01:20:30 +00:00
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
}