1
0

Makefile 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= gst-plugins-good
  5. PKG_VERSION:= 1.6.2
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 876e54dfce93274b98e024f353258d35fa4d49d1f9010069e676c530f6eb6a92
  8. PKG_DESCR:= gstreamer good plugins
  9. PKG_SECTION:= libs/video
  10. PKG_DEPENDS:= gstreamer
  11. PKG_BUILDDEP:= gstreamer libvorbis libtheora alsa-lib
  12. PKG_URL:= http://gstreamer.freedesktop.org/
  13. PKG_SITES:= http://gstreamer.freedesktop.org/src/gst-plugins-good/
  14. PKG_OPTS:= dev
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,GST_PLUGINS_GOOD,gst-plugins-good,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. TARGET_CPPFLAGS+= -D_GNU_SOURCE -D_POSIX_SOURCE
  18. CONFIGURE_ARGS+= --without-x
  19. gst-plugins-good-install:
  20. $(INSTALL_DIR) $(IDIR_GST_PLUGINS_GOOD)/usr/lib/gstreamer-1.0/
  21. $(CP) $(WRKINST)/usr/lib/gstreamer-1.0/*.so \
  22. $(IDIR_GST_PLUGINS_GOOD)/usr/lib/gstreamer-1.0/
  23. include ${ADK_TOPDIR}/mk/pkg-bottom.mk