mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
extra/gstreamer to 1.16.0-1
This commit is contained in:
parent
db61229bf0
commit
d1e458c64a
1 changed files with 16 additions and 23 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue