mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich
|
|
# - remove valgrind makedepend
|
|
|
|
pkgname=gstreamer
|
|
pkgver=1.18.5
|
|
pkgrel=1
|
|
pkgdesc="Multimedia graph framework - core"
|
|
url="https://gstreamer.freedesktop.org/"
|
|
arch=(x86_64)
|
|
license=(LGPL)
|
|
depends=(libxml2 glib2 libunwind libcap libelf python)
|
|
makedepends=(gobject-introspection git bash-completion meson gmp gsl gtk3)
|
|
_commit=71c213f99ad5c8fc8f36a26238483f2bdf7d846a # tags/1.18.5^0
|
|
install=gstreamer.install
|
|
source=("git+https://gitlab.freedesktop.org/gstreamer/gstreamer.git#commit=$_commit")
|
|
sha256sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
}
|
|
|
|
build() {
|
|
arch-meson $pkgname build \
|
|
-D doc=disabled \
|
|
-D ptp-helper-permissions=capabilities \
|
|
-D dbghelp=disabled \
|
|
-D gobject-cast-checks=disabled \
|
|
-D package-name="GStreamer (Arch Linux)" \
|
|
-D package-origin="https://www.archlinux.org/"
|
|
meson compile -C build
|
|
}
|
|
|
|
check() {
|
|
meson test -C build --print-errorlogs
|
|
}
|
|
|
|
package() {
|
|
meson install -C build --destdir "$pkgdir"
|
|
}
|