23ad6f313bda038002b9140d02c88934ff8178a7
[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 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, \
41 --enable-shared \
42 --disable-static \
43 --enable-mdns \
44 --enable-howl \
45 --with-id3tag="$(STAGING_DIR)/usr" \
46 --with-gdbm-includes="$(STAGING_DIR)/usr/include" \
47 --with-gdbm-libs="$(STAGING_DIR)/usr/lib" \
48 --with-howl-includes="$(STAGING_DIR)/usr/include/howl" \
49 --with-howl-libs="$(STAGING_DIR)/usr/lib" \
50 --without-static-libs \
51 )
52 endef
53
54 define Build/Compile
55 rm -rf $(PKG_INSTALL_DIR)
56 mkdir -p $(PKG_INSTALL_DIR)
57 $(MAKE) -C $(PKG_BUILD_DIR) \
58 DESTDIR="$(PKG_INSTALL_DIR)" \
59 all install
60 endef
61
62 define Package/mt-daapd/install
63 install -m0755 -d $(1)/etc
64 install -m0644 $(PKG_BUILD_DIR)/contrib/mt-daapd.conf $(1)/etc/
65 install -m0644 $(PKG_BUILD_DIR)/contrib/mt-daapd.playlist $(1)/etc/
66 install -m0755 -d $(1)/etc/init.d
67 install -m0755 ./files/mt-daapd.init $(1)/etc/init.d/mt-daapd
68 install -m0755 -d $(1)/usr/share
69 $(CP) $(PKG_INSTALL_DIR)/usr/share/mt-daapd $(1)/usr/share/
70 install -m0755 -d $(1)/usr/sbin
71 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/mt-daapd $(1)/usr/sbin/
72 endef
73
74 $(eval $(call BuildPackage,mt-daapd))