Blame view

buildroot/buildroot-2016.08.1/package/netplug/netplug.mk 1.02 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
  ################################################################################
  #
  # netplug
  #
  ################################################################################
  
  NETPLUG_VERSION = 1.2.9.2
  NETPLUG_SOURCE = netplug-$(NETPLUG_VERSION).tar.bz2
  NETPLUG_SITE = http://www.red-bean.com/~bos/netplug
  NETPLUG_LICENSE = GPLv2
  NETPLUG_LICENSE_FILES = COPYING
  
  define NETPLUG_BUILD_CMDS
  	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
  endef
  
  define NETPLUG_INSTALL_TARGET_CMDS
  	$(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install
  endef
  
  define NETPLUG_INSTALL_INIT_SYSV
  	$(INSTALL) -m 0755 -D package/netplug/S29netplug \
  		$(TARGET_DIR)/etc/init.d/S29netplug
  endef
  
  define NETPLUG_INSTALL_INIT_SYSTEMD
  	$(INSTALL) -D -m 644 package/netplug/netplug.service \
  		$(TARGET_DIR)/usr/lib/systemd/system/netplug.service
  	mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
  	ln -sf ../../../../usr/lib/systemd/system/netplug.service \
  		$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/netplug.service
  endef
  
  $(eval $(generic-package))