aboutsummaryrefslogtreecommitdiffstats
path: root/community/gst-plugins-bad/APKBUILD
blob: ff9ce13637cde9c15e11599d47c17ec6a074f9a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gst-plugins-bad
pkgver=1.16.0
pkgrel=2
pkgdesc="GStreamer streaming media framework bad plug-ins"
url="https://gstreamer.freedesktop.org"
arch="all"
license="GPL-2.0-or-later LGPL-2.0-or-later"
options="!check" # 3 out of 51 tests fail as of 1.16.0
replaces="gst-plugins-bad1"
makedepends="alsa-lib-dev bluez-dev bzip2-dev curl-dev directfb-dev faac-dev
	faad2-dev flite-dev glib-dev glu-dev gsm-dev gst-plugins-base-dev
	gstreamer-dev libass-dev libdc1394-dev libexif-dev libmms-dev
	libmodplug-dev librsvg-dev libsrtp-dev libvdpau-dev libwebp-dev
	libx11-dev mesa-dev meson neon-dev openssl-dev opus-dev orc-compiler
	orc-dev spandsp-dev tiff-dev x265-dev vulkan-loader-dev vulkan-headers
	wayland-dev wayland-protocols"
subpackages="$pkgname-lang $pkgname-dev"
source="https://gstreamer.freedesktop.org/src/gst-plugins-bad/$pkgname-$pkgver.tar.xz"
ldpath="/usr/lib/gstreamer-1.0"

build() {
	meson \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--buildtype=release \
		-Dpackage-origin="https://alpinelinux.org" \
		-Dpackage-name="GStreamer bad plug-ins (Alpine Linux)" \
		-Dvulkan=enabled \
		. output
	ninja -C output
}

check() {
	# XDG_RUNTIME_DIR is just a temporary directory for a user, created
	# by pam_systemd (or in Alpine's case elogind's pam_elogind) mounted at
	# run/user/$(id -u), since we don't run elogind on the builders we can
	# just point it at /tmp
	XDG_RUNTIME_DIR=/tmp meson test -C output --print-errorlogs
}

package() {
	DESTDIR="$pkgdir" ninja -C output install
}

sha512sums="3555817553392ff258024cd4532252939d3f4cc6755746e3ac74a3327218a7c4a87e33d455fdd58a63fb1d5b4691a164d90e7824558ecf845fd6c77c99181aa2  gst-plugins-bad-1.16.0.tar.xz"