912827be54479e4f612277300e836333ba0e1e74
[packages.git] / sound / empcd / 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 # $Id: $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=empcd
12 PKG_VERSION:=2005.12.12
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://unfix.org/projects/empcd
17 PKG_MD5SUM:=300e59ba3067f1f82d4ecec124f96916
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/empcd
26   SECTION:=sound
27   CATEGORY:=Sound
28   TITLE:=EMPCd can control the MPD
29   DESCRIPTION:=\
30         This is EMPCd which can use /dev/input/event0 or other event devices\\\
31         to control MPD (Music Player Daemon), directly using libmpdclient\\\
32         and other programs, currently using system(2).
33   URL:=http://unfix.org/projects/empcd
34 endef
35
36 define Package/empcd/conffiles
37 /etc/empcd.conf
38 endef
39
40 define Build/Compile
41         $(call Build/Compile/Default,\
42                 DESTDIR="$(PKG_INSTALL_DIR)" \
43                 all \
44         )
45 endef
46
47 define Package/empcd/install    
48         $(INSTALL_DIR) $(1)/usr/bin
49         $(INSTALL_BIN) $(PKG_BUILD_DIR)/empcd $(1)/usr/bin/
50         $(INSTALL_DIR) $(1)/etc
51         $(INSTALL_CONF) $(PKG_BUILD_DIR)/doc/empcd.conf $(1)/etc/
52 endef
53
54 $(eval $(call BuildPackage,empcd))