+++ /dev/null
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=triggerhappy
-PKG_VERSION:=0.3.4
-PKG_REV:=cb3ed9ba849ff5926fa47fd1ae042fa0083edaf5
-PKG_RELEASE:=1
-
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=git://github.com/wertarbyte/triggerhappy
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_VERSION:=$(PKG_REV)
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/triggerhappy
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE:=handle input events and run configured programs
- URL:=http://github.com/wertarbyte/triggerhappy
-endef
-
-define Package/triggerhappy/description
- triggerhappy - handle input events and run configured programs
- The daemon thd can handle hotplugged input devices and is configured through
- simple configuration files in /etc/triggerhappy/triggers.d/.
-endef
-
-MAKE_FLAGS += \
- $(TARGET_CONFIGURE_OPTS) \
- $(1)
-
-define Package/triggerhappy/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_DIR) $(1)/etc
- $(INSTALL_DIR) $(1)/etc/init.d
- $(INSTALL_DIR) $(1)/etc/triggerhappy
- $(INSTALL_DIR) $(1)/etc/triggerhappy/triggers.d/
- $(INSTALL_DIR) $(1)/etc/hotplug.d/input/
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/thd $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/th-cmd $(1)/usr/sbin
- $(INSTALL_BIN) ./files/triggerhappy.init $(1)/etc/init.d/triggerhappy
- $(INSTALL_BIN) ./files/triggerhappy.hotplug $(1)/etc/hotplug.d/input/10-triggerhappy
- $(INSTALL_BIN) ./files/triggerhappy-example.conf $(1)/etc/triggerhappy/triggers.d/example.conf
-endef
-
-$(eval $(call BuildPackage,triggerhappy))
+++ /dev/null
-# This is an example configuration for the triggerhappy daemon (thd)
-# please note that every file to be processed must end in ".conf"
-#
-# To view a list of supported event codes, use "thd --listevents" or
-# "thd --dump /dev/input/event*"
-#
-# Format:
-# <eventcode> <value> <command>
-#
-# values for key events are 1 (pressed), 0 (released) or 2 (held)
-#
-## control an mpd instance
-# KEY_NEXTSONG 1 /usr/bin/mpc next
-# KEY_PREVSONG 1 /usr/bin/mpc prev
+++ /dev/null
---- a/Makefile
-+++ b/Makefile
-@@ -10,7 +10,7 @@ THCMD_COMPS := th-cmd cmdsocket
-
- MAKEDEPEND = $(CC) -M -MG $(CPPFLAGS) -o $*.d $<
-
--LINUX_INPUT_H := $(shell echo '\#include <linux/input.h>' | $(CC) $(CPPFLAGS) -M -E - | awk 'NR==1 {print $$2}')
-+LINUX_INPUT_H := $(shell for i in `echo | $(CC) $(CPPFLAGS) -M -E -include 'linux/input.h' -`; do test -f "$$i" && echo "$$i" && break; done)
-
- all: thd th-cmd man
-