Add libmpdclient package

Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
This commit is contained in:
Yauhen Kharuzhy 2010-11-21 19:58:28 +02:00 committed by Xiangfu Liu
parent 65934ce2f8
commit 5e68f891bf
1 changed files with 67 additions and 0 deletions

67
libmpdclient/Makefile Normal file
View File

@ -0,0 +1,67 @@
#
# Copyright (C) 2008 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:=libmpdclient
PKG_VERSION:=2.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://sourceforge.net/projects/musicpd/files/libmpdclient/$(PKG_VERSION)/
PKG_SOURCE_URL:=http://downloads.sourceforge.net/project/musicpd/libmpdclient/$(PKG_VERSION)/
PKG_MD5SUM:=d14bad30c9c117aa6b211ad9f96cfbe0
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/libmpdclient
TITLE:=libmpdclient
SECTION:=libs
CATEGORY:=Libraries
URL:=http://mpd.wikia.com/wiki/ClientLib:libmpdclient
DEPENDS:=
endef
define Package/libmpdclient/description
A stable, documented, asynchronous API library for interfacing MPD in the C, C++ & Objective C languages.
endef
TARGET_CFLAGS+="-std=gnu99"
#TARGET_LDFLAGS+=-lpthread
define Build/Configure
$(call Build/Configure/Default)
endef
define Build/InstallDev
$(INSTALL_DIR) \
$(1)/usr/include \
$(1)/usr/lib \
$(1)/usr/lib/pkgconfig
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/* \
$(1)/usr/lib/
$(CP) \
$(PKG_INSTALL_DIR)/usr/include/* \
$(1)/usr/include/
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig \
$(1)/usr/lib/
endef
define Package/libmpdclient/install
$(INSTALL_DIR) \
$(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libmpdclient.so* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libmpdclient))