065c003b0b
[florian: update gstreamer and gst-plugins-base so it actually builds] Signed-off-by: Andy Leiserson <andy@leiserson.org> Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@34519 3c298f89-4303-0410-b956-a3cf2f4a3e73
67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gupnp-dlna
|
|
PKG_VERSION:=0.6.6
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/gupnp-dlna/0.6/
|
|
PKG_MD5SUM:=4e3151125de991f474f728c1c5343ab1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
TARGET_LDFLAGS+=\
|
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
define Package/libgupnp-dlna
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Library for dealing with DLNA-related tasks
|
|
URL:=http://www.gupnp.org/
|
|
DEPENDS:=+libgupnp +gstreamer +libgstpbutils
|
|
endef
|
|
|
|
define Package/libgupnp-dlna/description
|
|
A small utility library that aims to ease the DLNA-related tasks such as media
|
|
profile guessing, transcoding to a given profile, etc.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/gupnp-dlna-1.0/libgupnp-dlna}
|
|
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libgupnp-dlna-1.0.{so*,la,a} \
|
|
$(1)/usr/lib/
|
|
|
|
$(INSTALL_DATA) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \
|
|
$(1)/usr/lib/pkgconfig/
|
|
|
|
$(INSTALL_DATA) \
|
|
$(PKG_INSTALL_DIR)/usr/include/gupnp-dlna-1.0/libgupnp-dlna/*.h \
|
|
$(1)/usr/include/gupnp-dlna-1.0/libgupnp-dlna/
|
|
endef
|
|
|
|
define Package/libgupnp-dlna/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libgupnp-dlna-1.0.so* \
|
|
$(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libgupnp-dlna))
|