summaryrefslogtreecommitdiff
path: root/package/gst-plugins-base
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-04-13 17:15:39 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-04-13 17:15:39 +0200
commitff6397187f7819a86db24be608bae706a7eca27a (patch)
tree0c9daf9f3eac9e26803ac45a280edb1a9f8c9057 /package/gst-plugins-base
parentfb3ce8f9ddf972e7eac5c2c6998c621e0100bda3 (diff)
add gstreamer and plugins
Diffstat (limited to 'package/gst-plugins-base')
-rw-r--r--package/gst-plugins-base/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/package/gst-plugins-base/Makefile b/package/gst-plugins-base/Makefile
new file mode 100644
index 000000000..2759558e2
--- /dev/null
+++ b/package/gst-plugins-base/Makefile
@@ -0,0 +1,33 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= gst-plugins-base
+PKG_VERSION:= 1.2.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 2e75fb03ed7e4d24d88601fcac4d57aa
+PKG_DESCR:= gstreamer base plugins
+PKG_SECTION:= libs
+PKG_DEPENDS:= gstreamer
+PKG_BUILDDEP:= gstreamer libvorbis libtheora alsa-lib
+PKG_URL:= http://gstreamer.freedesktop.org/
+PKG_SITES:= http://gstreamer.freedesktop.org/src/gst-plugins-base/
+PKG_OPTS:= dev
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,GST_PLUGINS_BASE,gst-plugins-base,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+
+TARGET_CPPFLAGS+= -D_GNU_SOURCE -D_POSIX_SOURCE
+
+gst-plugins-base-install:
+ $(INSTALL_DIR) $(IDIR_GST_PLUGINS_BASE)/usr/lib/gstreamer-1.0/
+ $(CP) $(WRKINST)/usr/lib/gstreamer-1.0/*.so \
+ $(IDIR_GST_PLUGINS_BASE)/usr/lib/gstreamer-1.0/
+ $(CP) $(WRKINST)/usr/lib/libgst*.so* \
+ $(IDIR_GST_PLUGINS_BASE)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk