From a8bda25770f7e8576f1514543cd5053852b87bd3 Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Sat, 23 Jan 2016 15:12:26 +0100 Subject: [PATCH] Added package gst-plugins bad --- index.html | 4 ++++ src/gst-plugins-bad.mk | 28 ++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 src/gst-plugins-bad.mk diff --git a/index.html b/index.html index d234478a..30ab8fd0 100644 --- a/index.html +++ b/index.html @@ -1433,6 +1433,10 @@ local-pkg-list: $(LOCAL_PKG_LIST) gst-plugins-good gst-plugins-good + + gst-plugins-bad + gst-plugins-bad + gstreamer gstreamer diff --git a/src/gst-plugins-bad.mk b/src/gst-plugins-bad.mk new file mode 100644 index 00000000..f2db2b3e --- /dev/null +++ b/src/gst-plugins-bad.mk @@ -0,0 +1,28 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := gst-plugins-bad +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.6.2 +$(PKG)_CHECKSUM := 650855e39ff56a8bb6cb0c192109c5926ce12f536d06e19ebf829de71ef396fe +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := http://gstreamer.freedesktop.org/src/$(PKG)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc gst-plugins-base gstreamer faad2 libass libgcrypt mpg123 openjpeg openal vo-aacenc vo-amrwbenc + +$(PKG)_UPDATE = $(subst gstreamer/refs,gst-plugins-bad/refs,$(gstreamer_UPDATE)) + +define $(PKG)_BUILD + find '$(1)' -name Makefile.in \ + -exec $(SED) -i 's,glib-mkenums,$(PREFIX)/$(TARGET)/bin/glib-mkenums,g' {} \; \ + -exec $(SED) -i 's,glib-genmarshal,$(PREFIX)/$(TARGET)/bin/glib-genmarshal,g' {} \; + cd '$(1)' && ./configure \ + $(MXE_CONFIGURE_OPTS) \ + --disable-debug \ + --disable-examples \ + --disable-opengl \ + --mandir='$(1)/sink' \ + --docdir='$(1)/sink' \ + --with-html-dir='$(1)/sink' + $(MAKE) -C '$(1)' -j '$(JOBS)' install +endef