summaryrefslogtreecommitdiffstats
path: root/rules/gst-plugins-gl.make
diff options
context:
space:
mode:
authorErwin Rol <erwin@erwinrol.com>2010-01-25 12:39:36 +0100
committerErwin Rol <erwin@erwinrol.com>2010-02-02 13:10:33 +0100
commitbae34b5b0fca408e81b1d84d69e146a9c28bb0db (patch)
tree4d5fc3f117bd1a74df063f182b8f7ad38296f2f8 /rules/gst-plugins-gl.make
parente710d512b49ba6caa8431d0881f20d4a3bc1e048 (diff)
downloadptxdist-bae34b5b0fca408e81b1d84d69e146a9c28bb0db.tar.gz
ptxdist-bae34b5b0fca408e81b1d84d69e146a9c28bb0db.tar.xz
[gst-plugins-gl] New packet
Signed-off-by: Erwin Rol <erwin@erwinrol.com>
Diffstat (limited to 'rules/gst-plugins-gl.make')
-rw-r--r--rules/gst-plugins-gl.make79
1 files changed, 79 insertions, 0 deletions
diff --git a/rules/gst-plugins-gl.make b/rules/gst-plugins-gl.make
new file mode 100644
index 000000000..bdd1879d5
--- /dev/null
+++ b/rules/gst-plugins-gl.make
@@ -0,0 +1,79 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2010 by Erwin Rol <erwin@erwinrol.com>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_GST_PLUGINS_GL) += gst-plugins-gl
+
+#
+# Paths and names
+#
+GST_PLUGINS_GL_VERSION := 0.10.1
+GST_PLUGINS_GL := gst-plugins-gl-$(GST_PLUGINS_GL_VERSION)
+GST_PLUGINS_GL_SUFFIX := tar.bz2
+GST_PLUGINS_GL_URL := http://gstreamer.freedesktop.org/src/gst-plugins-gl/$(GST_PLUGINS_GL).$(GST_PLUGINS_GL_SUFFIX)
+GST_PLUGINS_GL_SOURCE := $(SRCDIR)/$(GST_PLUGINS_GL).$(GST_PLUGINS_GL_SUFFIX)
+GST_PLUGINS_GL_DIR := $(BUILDDIR)/$(GST_PLUGINS_GL)
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+$(GST_PLUGINS_GL_SOURCE):
+ @$(call targetinfo)
+ @$(call get, GST_PLUGINS_GL)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+GST_PLUGINS_GL_CONF_TOOL := autoconf
+GST_PLUGINS_GL_CONF_OPT := \
+ $(CROSS_AUTOCONF_USR) \
+ --disable-rpath \
+ --disable-nls \
+ --disable-debug \
+ --disable-profiling \
+ --disable-valgrind \
+ --disable-gcov \
+ --disable-gtk-doc \
+ --enable-largefile
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/gst-plugins-gl.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, gst-plugins-gl)
+ @$(call install_fixup, gst-plugins-gl,PACKAGE,gst-plugins-gl)
+ @$(call install_fixup, gst-plugins-gl,PRIORITY,optional)
+ @$(call install_fixup, gst-plugins-gl,VERSION,$(GST_PLUGINS_GL_VERSION))
+ @$(call install_fixup, gst-plugins-gl,SECTION,base)
+ @$(call install_fixup, gst-plugins-gl,AUTHOR,"Erwin Rol <erwin@erwinrol.com>")
+ @$(call install_fixup, gst-plugins-gl,DEPENDS,)
+ @$(call install_fixup, gst-plugins-gl,DESCRIPTION,missing)
+
+ @$(call install_copy, gst-plugins-gl, 0, 0, 0644, -, /usr/lib/gstreamer-0.10/libgstopengl.so)
+
+ @$(call install_copy, gst-plugins-gl, 0, 0, 0644, -, /usr/lib/libgstgl-0.10.so.0.0.0)
+ @$(call install_link, gst-plugins-gl, libgstgl-0.10.so.0.0.0, /usr/lib/libgstgl-0.10.so.0)
+ @$(call install_link, gst-plugins-gl, libgstgl-0.10.so.0.0.0, /usr/lib/libgstgl-0.10.so)
+
+ @$(call install_finish, gst-plugins-gl)
+
+ @$(call touch)
+
+# vim: syntax=make