Blame view

buildroot/buildroot-2016.08.1/package/start-stop-daemon/start-stop-daemon.mk 1.28 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
  ################################################################################
  #
  # start-stop-daemon
  #
  ################################################################################
  
  # Debian start-stop-daemon is part of dpkg. Since start-stop-daemon is the only
  # interesting tool in it, we call the buildroot package start-stop-daemon.
  
  START_STOP_DAEMON_VERSION = 1.18.7
  START_STOP_DAEMON_SOURCE = dpkg_$(START_STOP_DAEMON_VERSION).tar.xz
  START_STOP_DAEMON_SITE = http://snapshot.debian.org/archive/debian/20160509T100042Z/pool/main/d/dpkg
  START_STOP_DAEMON_CONF_OPTS = \
  	--disable-dselect \
  	--disable-update-alternatives \
  	--disable-install-info \
  	--exec-prefix=/
  START_STOP_DAEMON_CONF_ENV = \
  	dpkg_cv_va_copy=yes \
  	dpkg_cv_c99_snprintf=yes \
  	DPKG_DEVEL_MODE=1
  START_STOP_DAEMON_DEPENDENCIES = host-pkgconf \
  	$(if $(BR2_PACKAGE_BUSYBOX),busybox)
  # Patching m4/dpkg-arch.m4
  START_STOP_DAEMON_AUTORECONF = YES
  START_STOP_DAEMON_LICENSE = GPLv2+
  START_STOP_DAEMON_LICENSE_FILES = COPYING
  
  define START_STOP_DAEMON_BUILD_CMDS
  	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/lib/compat
  	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/utils
  endef
  
  define START_STOP_DAEMON_INSTALL_TARGET_CMDS
  	$(INSTALL) -m 0755 -D $(@D)/utils/start-stop-daemon \
  		$(TARGET_DIR)/sbin/start-stop-daemon
  endef
  
  $(eval $(autotools-package))