76 lines
1.7 KiB
Makefile
76 lines
1.7 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2009 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:=1.9.0.13
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_SOURCE:=libdmapsharing-$(PKG_VERSION).tar.gz
|
||
|
PKG_SOURCE_URL:=http://www.flyn.org/projects/libdmapsharing/
|
||
|
PKG_MD5SUM:=c178daa4d7c9c09c1a5c2a1687fc4e09
|
||
|
|
||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/libdmapsharing-$(PKG_VERSION)
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
EXTRA_CFLAGS+= \
|
||
|
-I$(STAGING_DIR)/usr/lib/libintl/include
|
||
|
|
||
|
EXTRA_LDFLAGS+= \
|
||
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
|
||
|
-L$(STAGING_DIR)/usr/lib/libintl/lib
|
||
|
|
||
|
define Package/libdmapsharing
|
||
|
SECTION:=libs
|
||
|
CATAGORY:=Libraries
|
||
|
DEPENDS:=+libsoup +mdnsresponder +gst-plugins-base-app
|
||
|
TITLE:=libdmapsharing
|
||
|
URL:=http://www.flyn.org/projects/libdmapsharing/
|
||
|
endef
|
||
|
|
||
|
define Package/libdmapsharing/decription
|
||
|
Libdmapsharing is a DMAP library implementation in C
|
||
|
endef
|
||
|
|
||
|
define Build/Configure
|
||
|
$(call Build/Configure/Default)
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||
|
all install
|
||
|
endef
|
||
|
|
||
|
define Build/InstallDev
|
||
|
$(INSTALL_DIR) $(1)/usr/include/
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/include/libdmapsharing-1.9/ \
|
||
|
$(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))
|