Blame view

buildroot/buildroot-2016.08.1/package/triggerhappy/triggerhappy.mk 1.48 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  ################################################################################
  #
  # triggerhappy
  #
  ################################################################################
  
  TRIGGERHAPPY_VERSION = 7e5abc69f215678e93a6b999524981c8b40bdcd9
  TRIGGERHAPPY_SITE = $(call github,wertarbyte,triggerhappy,$(TRIGGERHAPPY_VERSION))
  TRIGGERHAPPY_LICENSE = GPLv3+
  TRIGGERHAPPY_LICENSE_FILES = COPYING
  
  define TRIGGERHAPPY_BUILD_CMDS
  	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) thd th-cmd
  endef
  
  ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
  define TRIGGERHAPPY_INSTALL_UDEV_RULE
  	$(INSTALL) -D -m 0644 $(@D)/udev/triggerhappy-udev.rules \
  		$(TARGET_DIR)/lib/udev/rules.d/triggerhappy.rules
  endef
  endif
  
  define TRIGGERHAPPY_INSTALL_TARGET_CMDS
  	$(INSTALL) -d $(TARGET_DIR)/etc/triggerhappy/triggers.d
  	$(INSTALL) -D -m 0755 $(@D)/thd $(TARGET_DIR)/usr/sbin/thd
  	$(INSTALL) -D -m 0755 $(@D)/th-cmd $(TARGET_DIR)/usr/sbin/th-cmd
  	$(TRIGGERHAPPY_INSTALL_UDEV_RULE)
  endef
  
  define TRIGGERHAPPY_INSTALL_INIT_SYSV
  	$(INSTALL) -m 0755 -D package/triggerhappy/S10triggerhappy \
  		$(TARGET_DIR)/etc/init.d/S10triggerhappy
  endef
  
  define TRIGGERHAPPY_INSTALL_INIT_SYSTEMD
  	$(INSTALL) -D -m 644 package/triggerhappy/triggerhappy.service \
  		$(TARGET_DIR)/usr/lib/systemd/system/triggerhappy.service
  	mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
  	ln -sf ../../../../usr/lib/systemd/system/triggerhappy.service \
  		$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/triggerhappy.service
  endef
  
  $(eval $(generic-package))