23144e90d717a67ce250440571a5e4a28d36677b
[openwrt/svn-archive/archive.git] / sound / mt-daapd / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=mt-daapd
12 PKG_VERSION:=0.2.4
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/mt-daapd
17 PKG_MD5SUM:=2e1cdbe6b94ef153e915806f80a28dca
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/mt-daapd
26 SECTION:=sound
27 CATEGORY:=Sound
28 DEPENDS:=+libgdbm +libhowl +libid3tag
29 TITLE:=A multi-threaded DAAP (Digital Audio Access Protocol) daemon
30 DESCRIPTION:=\
31 mt-daapd is a program which acts as an iTunes (DAAP) server for Linux.
32 URL:=http://www.mt-daapd.org/
33 endef
34
35 define Package/mt-daapd/conffiles
36 /etc/mt-daapd.conf
37 /etc/mt-daapd.playlist
38 endef
39
40 define Build/Configure
41 $(call Build/Configure/Default, \
42 --enable-mdns \
43 --enable-howl \
44 --with-id3tag="$(STAGING_DIR)/usr" \
45 --with-gdbm-includes="$(STAGING_DIR)/usr/include" \
46 --with-gdbm-libs="$(STAGING_DIR)/usr/lib" \
47 --with-howl-includes="$(STAGING_DIR)/usr/include/howl" \
48 --with-howl-libs="$(STAGING_DIR)/usr/lib" \
49 --without-static-libs \
50 )
51 endef
52
53 define Build/Compile
54 $(MAKE) -C $(PKG_BUILD_DIR) \
55 DESTDIR="$(PKG_INSTALL_DIR)" \
56 all install
57 endef
58
59 define Package/mt-daapd/install
60 $(INSTALL_DIR) $(1)/etc
61 $(INSTALL_DATA) $(PKG_BUILD_DIR)/contrib/mt-daapd.conf $(1)/etc/
62 $(INSTALL_DATA) $(PKG_BUILD_DIR)/contrib/mt-daapd.playlist $(1)/etc/
63 $(INSTALL_DIR) $(1)/usr/share
64 $(CP) $(PKG_INSTALL_DIR)/usr/share/mt-daapd $(1)/usr/share/
65 $(INSTALL_DIR) $(1)/usr/sbin
66 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/mt-daapd $(1)/usr/sbin/
67 $(INSTALL_DIR) $(1)/etc/init.d
68 $(INSTALL_BIN) ./files/mt-daapd.init $(1)/etc/init.d/mt-daapd
69 endef
70
71 $(eval $(call BuildPackage,mt-daapd))