9bc05927fdb2f5c05b41e1ed93153a9958f93e2e
[openwrt/svn-archive/archive.git] / utils / cmdpad / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=cmdpad
11 PKG_VERSION:=0.0.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
15 PKG_SOURCE_URL:=http://prdownloads.sourceforge.net/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 $(eval $(call BuildPackage,cmdpad))