libmpd wants glib2
[openwrt/svn-archive/archive.git] / libs / libmpd / Makefile
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libmpd
11 PKG_VERSION:=0.19.0
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.sarine.nl/Programs/gmpc/$(PKG_VERSION)/
16 PKG_MD5SUM:=a994f5f25a22c778926a3684c3e3050d
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 TARGET_CFLAGS += $(FPIC)
24
25
26 define Package/libmpd
27 SECTION:=libs
28 CATEGORY:=Libraries
29 DEPENDS:=+glib2
30 TITLE:=Libmpd is an a library to easily connect to a mpd server
31 URL:=http://gmpc.wikia.com/wiki/LIBMPD_RELEASES
32 endef
33
34 define Package/libmpd/description
35 It's wraps around libmpdclient and provides a higher level api.
36 endef
37
38 define Build/InstallDev
39 $(INSTALL_DIR) $(1)/usr/include
40 $(CP) $(PKG_INSTALL_DIR)/usr/include/libmpd-1.0 $(1)/usr/include/
41 $(INSTALL_DIR) $(1)/usr/lib
42 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmpd.{a,so*} $(1)/usr/lib/
43 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
44 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libmpd.pc $(1)/usr/lib/pkgconfig/
45 endef
46
47 define Package/libmpd/install
48 $(INSTALL_DIR) $(1)/usr/lib
49 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmpd.so.* $(1)/usr/lib/
50 endef
51
52 $(eval $(call BuildPackage,libmpd))