Port mt-daapd to -ng
[packages.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 PKG_MD5SUM:=2e1cdbe6b94ef153e915806f80a28dca
15
16 PKG_SOURCE_URL:=@SF/mt-daapd
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
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:=mt-daapd is a program which acts as an iTunes (DAAP) server for Linux.
31   URL:=http://www.mt-daapd.org
32 endef
33
34 define Package/mt-daapd/conffiles
35 /etc/mt-daapd.conf
36 /etc/mt-daapd.playlist
37 endef
38
39 define Build/Configure
40 $(call Build/Configure/Default,--enable-shared \
41                         --disable-static \
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,ac_cv_func_setpgrp_void=yes)
50 endef
51
52 define Build/Compile    
53         rm -rf $(PKG_INSTALL_DIR)
54         mkdir -p $(PKG_INSTALL_DIR)
55         $(MAKE) -C $(PKG_BUILD_DIR) \
56                 DESTDIR="$(PKG_INSTALL_DIR)" \
57                 all install
58 endef
59
60 define Package/mt-daapd/install 
61         install -m0755 -d $(1)/etc
62         install -m0644 $(PKG_BUILD_DIR)/contrib/mt-daapd.conf $(1)/etc/
63         install -m0644 $(PKG_BUILD_DIR)/contrib/mt-daapd.playlist $(1)/etc/
64         install -m0755 -d $(1)/etc/init.d
65         install -m0755 ./files/mt-daapd.init $(1)/etc/init.d/mt-daapd
66         install -m0755 -d $(1)/usr/share
67         $(CP) $(PKG_INSTALL_DIR)/usr/share/mt-daapd $(1)/usr/share/
68         install -m0755 -d $(1)/usr/sbin
69         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/mt-daapd $(1)/usr/sbin/
70 endef
71
72 $(eval $(call BuildPackage,mt-daapd))