blob: d8b3f46ecbd45ec2d595408ea624a765981a1807 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
NAME="gstreamer"
DESC="GStreamer streaming media framework"
MAKEDEPS="libxml2 bison flex glib gobject-introspection libcap meson perl"
PKG_VER=1.20.1
SOURCE="https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-$PKG_VER.tar.xz"
build() {
meson --prefix=/usr \
-Dintrospection=enabled \
-Dbash-completion=disabled \
-Dptp-helper-permissions=capabilities \
. output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
package() {
DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
}
|