mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-21 21:52:38 +02:00
78 lines
1.6 KiB
Plaintext
78 lines
1.6 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=gst-plugins-base
|
|
pkgver=1.22.7
|
|
pkgrel=0
|
|
pkgdesc="GStreamer streaming media framework base plug-ins"
|
|
url="https://gstreamer.freedesktop.org"
|
|
arch="all"
|
|
license="GPL-2.0-or-later AND LGPL-2.0-or-later"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
replaces="gst-plugins-base1 gst-plugins-bad"
|
|
depends_dev="wayland-dev"
|
|
makedepends="
|
|
alsa-lib-dev
|
|
cdparanoia-dev
|
|
expat-dev
|
|
glib-dev
|
|
gobject-introspection-dev
|
|
graphene-dev
|
|
gstreamer-dev
|
|
gtk+3.0-dev
|
|
libice-dev
|
|
libogg-dev
|
|
libsm-dev
|
|
libtheora-dev
|
|
libvorbis-dev
|
|
libxv-dev
|
|
mesa-dev
|
|
meson
|
|
opus-dev
|
|
orc-compiler
|
|
orc-dev
|
|
perl
|
|
"
|
|
source="https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-$pkgver.tar.xz"
|
|
ldpath="/usr/lib/gstreamer-1.0"
|
|
|
|
# secfixes:
|
|
# 1.18.4-r0:
|
|
# - CVE-2021-3522
|
|
# 1.16.0-r0:
|
|
# - CVE-2019-9928
|
|
|
|
# sporadic testsuite failures on various archs, testsuite fails with network
|
|
# restricted too
|
|
options="!check"
|
|
|
|
build() {
|
|
CFLAGS="$CFLAGS -O2" \
|
|
CXXFLAGS="$CXXFLAGS -O2" \
|
|
CPPFLAGS="$CPPFLAGS -O2" \
|
|
abuild-meson \
|
|
-Db_lto=true \
|
|
-Dalsa=enabled \
|
|
-Dintrospection=enabled \
|
|
-Dpackage-origin="https://alpinelinux.org" \
|
|
-Dpackage-name="GStreamer base plug-ins (Alpine Linux)" \
|
|
-Dtests="$(want_check && echo enabled || echo disabled)" \
|
|
. output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
doc() {
|
|
default_doc
|
|
replaces="${pkgname}1-doc"
|
|
}
|
|
|
|
sha512sums="
|
|
a33d332aebf5e209380c2740e0fc6762e49b78a9921822adfc07efdd4780cbe038867d9924a2df334c8a624e8be49b5d46e276538d6d77ff8ac9f002ced052e3 gst-plugins-base-1.22.7.tar.xz
|
|
"
|