From c3186e549efbf59246a71c9e66784de1d09128eb Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Wed, 5 Dec 2012 17:31:24 +0000 Subject: [PATCH] gupnp-av: add package Signed-off-by: Andy Leiserson Signed-off-by: Florian Fainelli SVN-Revision: 34518 --- libs/gupnp-av/Makefile | 66 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 libs/gupnp-av/Makefile diff --git a/libs/gupnp-av/Makefile b/libs/gupnp-av/Makefile new file mode 100644 index 0000000000..80ab8e1b3b --- /dev/null +++ b/libs/gupnp-av/Makefile @@ -0,0 +1,66 @@ +# +# 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-av +PKG_VERSION:=0.10.2 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_URL:=@GNOME/gupnp-av/0.10/ +PKG_MD5SUM:=a42af0751f8b0bacdda0741d3a515fec + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/nls.mk + +TARGET_LDFLAGS+=\ + -Wl,-rpath-link=$(STAGING_DIR)/usr/lib + +define Package/libgupnp-av + SECTION:=libs + CATEGORY:=Libraries + TITLE:=Library for dealing with UPnP/AV profiles + URL:=http://www.gupnp.org/ + DEPENDS:=+libgupnp +endef + +define Package/libgupnp-av/description +GUPnP A/V is a small utility library that aims to ease the handling and +implementation of UPnP A/V profiles. +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-av-1.0/libgupnp-av} + + $(CP) \ + $(PKG_INSTALL_DIR)/usr/lib/libgupnp-av-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-av-1.0/libgupnp-av/*.h \ + $(1)/usr/include/gupnp-av-1.0/libgupnp-av/ +endef + +define Package/libgupnp-av/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) \ + $(PKG_INSTALL_DIR)/usr/lib/libgupnp-av-1.0.so* \ + $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libgupnp-av)) -- 2.30.2