summaryrefslogtreecommitdiff
path: root/repo/gst-plugins-base
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
committerdavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
commitccc722b7ed330198d82a3cf28ead76d6d107a70a (patch)
tree7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/gst-plugins-base
parent9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff)
added java
Diffstat (limited to 'repo/gst-plugins-base')
-rw-r--r--repo/gst-plugins-base/gst-plugins-base.xibuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/gst-plugins-base/gst-plugins-base.xibuild b/repo/gst-plugins-base/gst-plugins-base.xibuild
new file mode 100644
index 0000000..8675b16
--- /dev/null
+++ b/repo/gst-plugins-base/gst-plugins-base.xibuild
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+NAME="gst-plugins-base"
+DESC="GStreamer streaming media framework base plug-ins"
+
+MAKEDEPS="alsa-lib cdparanoia expat glib gobject-introspection graphene gstreamer gtk3 libice libogg libsm libtheora libvorbis libxv mesa meson opus orc-compiler orc perl"
+
+PKG_VER=1.20.1
+SOURCE="https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-$PKG_VER.tar.xz"
+
+build() {
+ meson --prefix=/usr \
+ -Dalsa=enabled \
+ -Dintrospection=enabled \
+ . output
+ meson compile ${JOBS:+-j ${JOBS}} -C output
+}
+
+package() {
+ DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
+}
+