screen: moved to github
[packages.git] / utils / cmdpad / Makefile
1 #
2 # Copyright (C) 2007-2011 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:=cmdpad
11 PKG_VERSION:=0.0.3
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
15 PKG_SOURCE_URL:=@SF/cmdpad
16 PKG_MD5SUM:=6633b2354b7f23f9cd8e2bfb6e735965
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/cmdpad
21   SECTION:=utils
22   CATEGORY:=Utilities
23   TITLE:=execute commands when a key is pressed, released or hold down
24   URL:=http://cmdpad.sourceforge.net/index.php
25 endef
26
27 CONFIGURE_ARGS += \
28         --enable-static \
29         --enable-shared
30
31 define Package/cmdpad/description
32         cmdpad - execute commands when a key is pressed, released or hold down.
33         Should be started from /etc/rc or /etc/rc.local. To run it as deamon you
34         need to start it with '&'. All logs are printed to standard out and standard
35         error (to write the log to disk use cmdpad > /var/log/cmdpad). Cmdpad
36         searches for /etc/cmdpad.conf and load the key bindings. Then wait for
37         key event and check each command to see if it should be run.
38 endef
39
40 MAKE_FLAGS += \
41         $(TARGET_CONFIGURE_OPTS) \
42         $(1)
43
44 define Package/cmdpad/install
45         $(INSTALL_DIR) $(1)/usr/sbin
46         $(INSTALL_DIR) $(1)/etc
47         $(INSTALL_DIR) $(1)/etc/init.d
48         $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/cmdpad $(1)/usr/sbin/
49         $(INSTALL_CONF) $(PKG_BUILD_DIR)/src/cmdpad.conf $(1)/etc/
50         $(INSTALL_BIN) ./files/cmdpad.init $(1)/etc/init.d/cmdpad
51 endef
52
53 define Package/cmdpad/conffiles
54 /etc/cmdpad.conf
55 endef
56
57 $(eval $(call BuildPackage,cmdpad))