diff multimedia/gstreamer/gstreamer.sh @ 674:cff7770ad21a

multimedia/gstreamer: initial import, closes #1724
author David Demelier <markand@malikania.fr>
date Thu, 01 Aug 2019 20:25:00 +0200
parents
children e91fbcb3d1ef
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/gstreamer/gstreamer.sh	Thu Aug 01 20:25:00 2019 +0200
@@ -0,0 +1,70 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=gstreamer
+PKGVERSION=1.16.0
+PKGREVISION=1
+PKGLICENSE="LGPLv20"
+PKGSUMMARY="multimedia streaming framework"
+PKGDOWNLOAD="https://gstreamer.freedesktop.org/src/gstreamer/$PKGNAME-$PKGVERSION.tar.xz"
+PKGDEPENDS="dev/meson:build lib/glib"
+PKGOPTIONS="INTROSPECTION NLS"
+
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${INTROSPECTION:=yes}
+: ${NLS:=yes}
+
+if [ "$INTROSPECTION" = "yes" ]; then
+	PKGDEPENDS="dev/gobject-introspection:build $PKGDEPENDS"
+	with_introspection="-D introspection=enabled"
+else
+	with_introspection="-D introspection=disabled"
+fi
+
+if [ "$NLS" = "yes" ]; then
+	PKGDEPENDS="core/gettext:build $PKGDEPENDS"
+	with_nls="-D nls=enabled"
+else
+	with_nls="-D nls=disabled"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.xz
+	cd $PKGNAME-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	meson \
+		--prefix / \
+		--buildtype release \
+		--default-library shared \
+		-D tests=disabled \
+		$with_introspection \
+		$with_nls \
+		. build
+	CC="$CC" ninja -C build
+	DESTDIR=$DESTDIR ninja -C build install
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
+