extra/gstreamer to 1.16.0-1

This commit is contained in:
Kevin Mihelich 2019-04-23 23:58:20 +00:00
parent db61229bf0
commit d1e458c64a

View file

@ -5,19 +5,19 @@
# - remove valgrind makedepend
pkgname=gstreamer
pkgver=1.14.4
pkgver=1.16.0
pkgrel=1
pkgdesc="GStreamer open-source multimedia framework core library"
url="https://gstreamer.freedesktop.org/"
arch=(x86_64)
license=(LGPL)
depends=(libxml2 glib2 libunwind libcap libelf)
makedepends=(gtk-doc gobject-introspection autoconf-archive git bash-completion)
makedepends=(gtk-doc gobject-introspection git bash-completion meson)
checkdepends=(gmp gsl gtk3)
_commit=3c586dec930c5c253da0cf49e3f3846243f0ecf5 # tags/1.14.4^0
_commit=89c221a6972513f629c969f5485f37e77ccfa6e1 # tags/1.16.0^0
install=gstreamer.install
source=("git+https://anongit.freedesktop.org/git/gstreamer/gstreamer#commit=$_commit"
"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
source=("git+https://gitlab.freedesktop.org/gstreamer/gstreamer.git#commit=$_commit"
"gst-common::git+https://gitlab.freedesktop.org/gstreamer/common.git")
sha256sums=('SKIP'
'SKIP')
@ -32,31 +32,24 @@ prepare() {
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)" \
--with-package-origin="https://www.archlinux.org/" \
--enable-gtk-doc \
--disable-static
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
arch-meson $pkgname build \
-D ptp-helper-permissions=capabilities \
-D dbghelp=disabled \
-D gobject-cast-checks=disabled \
-D glib-asserts=disabled \
-D glib-checks=disabled \
-D package-name="GStreamer (Arch Linux)" \
-D package-origin="https://www.archlinux.org/"
ninja -C build
}
check() {
cd $pkgname
make check
meson test -C build --print-errorlogs
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
DESTDIR="$pkgdir" meson install -C build
}