[packages] Use default templates instead of custom reimplementations where applicable
[packages.git] / libs / libmpd / Makefile
1 #
2 # Copyright (C) 2007 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:=1
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_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 TARGET_CFLAGS += $(FPIC)
23
24
25 define Package/libmpd
26   SECTION:=libs
27   CATEGORY:=Libraries
28   TITLE:=Libmpd is an a library to easily connect to a mpd server
29   URL:=http://gmpc.wikia.com/wiki/LIBMPD_RELEASES
30 endef
31
32 define Package/libmpd/description
33 It's wraps around libmpdclient and provides a higher level api.
34 endef
35
36 define Build/InstallDev
37         $(INSTALL_DIR) $(1)/usr/include
38         $(CP) $(PKG_INSTALL_DIR)/usr/include/libmpd-1.0 $(1)/usr/include/
39         $(INSTALL_DIR) $(1)/usr/lib
40         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmpd.{a,so*} $(1)/usr/lib/
41         $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
42         $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libmpd.pc $(1)/usr/lib/pkgconfig/
43 endef
44
45 define Package/libmpd/install
46         $(INSTALL_DIR) $(1)/usr/lib
47         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmpd.so.* $(1)/usr/lib/
48 endef
49
50 $(eval $(call BuildPackage,libmpd))