diff --git a/index.html b/index.html index 30ab8fd013..9579f19d6d 100644 --- a/index.html +++ b/index.html @@ -1425,6 +1425,10 @@

List of Packages

gsoap gSOAP + + gst-plugins-bad + gst-plugins-bad + gst-plugins-base gst-plugins-base @@ -1434,8 +1438,8 @@

List of Packages

gst-plugins-good - gst-plugins-bad - gst-plugins-bad + gst-plugins-ugly + gst-plugins-ugly gstreamer diff --git a/src/gst-plugins-ugly.mk b/src/gst-plugins-ugly.mk new file mode 100644 index 0000000000..4cdb5bfd1f --- /dev/null +++ b/src/gst-plugins-ugly.mk @@ -0,0 +1,28 @@ +#This file is part of MXE. +# See index.html for further information. + +PKG := gst-plugins-ugly +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.6.2 +$(PKG)_CHECKSUM := e7f1b6321c8667fabc0dedce3998a3c6e90ce9ce9dea7186d33dc4359f9e9845 +$(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 lame libdvdread x264 a52dec libmad libcdio opencore-amr twolame + +$(PKG)_UPDATE = $(subst gstreamer/refs,gst-plugins-ugly/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