mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-04 23:34:04 +02:00
68 lines
1.5 KiB
Makefile
68 lines
1.5 KiB
Makefile
|
#
|
||
|
# 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))
|