|
|
@ -0,0 +1,73 @@ |
|
|
|
#
|
|
|
|
# Copyright (C) 2009-2012 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# This Makefile is a skeleton
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk |
|
|
|
|
|
|
|
PKG_NAME:=libdmapsharing |
|
|
|
PKG_VERSION:=2.9.28 |
|
|
|
PKG_RELEASE:=1 |
|
|
|
|
|
|
|
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org> |
|
|
|
|
|
|
|
PKG_LICENSE=LGPLv2.1 |
|
|
|
PKG_LICENSE_FILE=COPYING |
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/libdmapsharing-$(PKG_VERSION) |
|
|
|
PKG_SOURCE:=libdmapsharing-$(PKG_VERSION).tar.gz |
|
|
|
PKG_SOURCE_URL:=http://www.flyn.org/projects/libdmapsharing/ |
|
|
|
PKG_MD5SUM:=a530bee446040f6e6664a38212f16f60 |
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf |
|
|
|
PKG_INSTALL:=1 |
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk |
|
|
|
include $(INCLUDE_DIR)/nls.mk |
|
|
|
|
|
|
|
TARGET_LDFLAGS+= \
|
|
|
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib |
|
|
|
|
|
|
|
define Package/libdmapsharing |
|
|
|
SECTION:=libs |
|
|
|
CATEGORY:=Libraries |
|
|
|
DEPENDS:=+libsoup +mdnsresponder +gstreamer1 +gst1-plugins-base +libgst1app |
|
|
|
TITLE:=libdmapsharing |
|
|
|
URL:=http://www.flyn.org/projects/libdmapsharing/ |
|
|
|
endef |
|
|
|
|
|
|
|
define Package/libdmapsharing/decription |
|
|
|
Libdmapsharing is a DMAP library implementation in C |
|
|
|
endef |
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--disable-introspection \
|
|
|
|
--disable-gtk-doc |
|
|
|
|
|
|
|
define Build/InstallDev |
|
|
|
$(INSTALL_DIR) $(1)/usr/include/ |
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/libdmapsharing-3.0/ \
|
|
|
|
$(1)/usr/include/ |
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/ |
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
|
|
$(1)/usr/lib/ |
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig/ |
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \
|
|
|
|
$(1)/usr/lib/pkgconfig/ |
|
|
|
endef |
|
|
|
|
|
|
|
define Package/libdmapsharing/install |
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/ |
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
|
|
$(1)/usr/lib/ |
|
|
|
endef |
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libdmapsharing)) |