[packages/triggerhappy] update Makefile to use a more recent version
[openwrt/svn-archive/archive.git] / utils / triggerhappy / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=triggerhappy
9 PKG_VERSION:=0.1.6
10 PKG_REV:=01bedc72451f8afd0c35649dd67c428c44a0f737
11 PKG_RELEASE:=1
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=git://github.com/wertarbyte/triggerhappy
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17 PKG_SOURCE_VERSION:=$(PKG_REV)
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/triggerhappy
22 SECTION:=utils
23 CATEGORY:=Utilities
24 TITLE:=handle input events and run configured programs
25 URL:=http://github.com/wertarbyte/triggerhappy
26 endef
27
28 define Package/triggerhappy/description
29 triggerhappy - handle input events and run configured programs
30 The daemon thd can handle hotplugged input devices and is configured through
31 simple configuration files in /etc/triggerhappy/triggers.d/.
32 endef
33
34 MAKE_FLAGS += \
35 LINUX_INPUT_H=$(TOOLCHAIN_DIR)/include/linux/input.h \
36 $(TARGET_CONFIGURE_OPTS) \
37 $(1)
38
39 define Package/triggerhappy/install
40 $(INSTALL_DIR) $(1)/usr/sbin
41 $(INSTALL_DIR) $(1)/etc
42 $(INSTALL_DIR) $(1)/etc/init.d
43 $(INSTALL_DIR) $(1)/etc/triggerhappy
44 $(INSTALL_DIR) $(1)/etc/triggerhappy/triggers.d/
45 $(INSTALL_DIR) $(1)/etc/hotplug.d/input/
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/thd $(1)/usr/sbin
47 $(INSTALL_BIN) $(PKG_BUILD_DIR)/th-cmd $(1)/usr/sbin
48 $(INSTALL_BIN) ./files/triggerhappy.init $(1)/etc/init.d/triggerhappy
49 $(INSTALL_BIN) ./files/triggerhappy.hotplug $(1)/etc/hotplug.d/input/10-triggerhappy
50 $(INSTALL_BIN) ./files/triggerhappy-example.conf $(1)/etc/triggerhappy/triggers.d/example.conf
51 endef
52
53 $(eval $(call BuildPackage,triggerhappy))