Root/triggersad/Makefile

1#
2# This is free software, licensed under the GNU General Public License v2.
3# See /LICENSE for more information.
4#
5
6include $(TOPDIR)/rules.mk
7
8PKG_NAME:=triggersad
9PKG_VERSION:=0.1.3
10PKG_REV:=f7c42167127fb8377f99440f943ab863433b14b5
11PKG_RELEASE:=1
12
13PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14PKG_SOURCE_URL:=git://github.com/wertarbyte/triggerhappy
15PKG_SOURCE_PROTO:=git
16PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17PKG_SOURCE_VERSION:=$(PKG_REV)
18
19include $(INCLUDE_DIR)/package.mk
20
21define Package/triggersad
22  SECTION:=utils
23  CATEGORY:=Utilities
24  TITLE:=handle input events and run configured programs
25  URL:=http://github.com/wertarbyte/triggerhappy
26endef
27
28define Package/triggersad/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/.
32endef
33
34MAKE_FLAGS += \
35    $(TARGET_CONFIGURE_OPTS) \
36    $(1)
37
38MAKE_VARS += TOOLCHAIN_DIR=$(TOOLCHAIN_DIR)
39
40define Package/triggersad/install
41    $(INSTALL_DIR) $(1)/usr/sbin
42    $(INSTALL_DIR) $(1)/etc
43    $(INSTALL_DIR) $(1)/etc/init.d
44    $(INSTALL_DIR) $(1)/etc/triggerhappy
45    $(INSTALL_DIR) $(1)/etc/triggerhappy/triggers.d/
46    $(INSTALL_DIR) $(1)/etc/hotplug.d/input/
47    $(INSTALL_BIN) $(PKG_BUILD_DIR)/thd $(1)/usr/sbin
48    $(INSTALL_BIN) $(PKG_BUILD_DIR)/th-cmd $(1)/usr/sbin
49    $(INSTALL_BIN) ./files/triggerhappy.init $(1)/etc/init.d/triggerhappy
50    $(INSTALL_BIN) ./files/triggerhappy.hotplug $(1)/etc/hotplug.d/input/10-triggerhappy
51    $(INSTALL_BIN) ./files/triggerhappy-example.conf $(1)/etc/triggerhappy/triggers.d/example.conf
52endef
53
54$(eval $(call BuildPackage,triggersad))
55

Archive Download this file



interactive