The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / start-stop-daemon / start-stop-daemon.mk
1 ################################################################################
2 #
3 # start-stop-daemon
4 #
5 ################################################################################
6
7 # Debian start-stop-daemon is part of dpkg. Since start-stop-daemon is the only
8 # interesting tool in it, we call the buildroot package start-stop-daemon.
9
10 START_STOP_DAEMON_VERSION = 1.16.15
11 START_STOP_DAEMON_SOURCE = dpkg_$(START_STOP_DAEMON_VERSION).tar.xz
12 START_STOP_DAEMON_SITE = http://snapshot.debian.org/archive/debian/20140616T044945Z/pool/main/d/dpkg
13 START_STOP_DAEMON_CONF_OPTS = \
14         --disable-dselect \
15         --disable-update-alternatives \
16         --disable-install-info \
17         --exec-prefix=/
18 START_STOP_DAEMON_CONF_ENV = \
19         dpkg_cv_va_copy=yes \
20         dpkg_cv_c99_snprintf=yes
21 START_STOP_DAEMON_DEPENDENCIES = host-pkgconf \
22         $(if $(BR2_PACKAGE_BUSYBOX),busybox)
23 # Patching m4/dpkg-arch.m4
24 START_STOP_DAEMON_AUTORECONF = YES
25 START_STOP_DAEMON_LICENSE = GPLv2+
26 START_STOP_DAEMON_LICENSE_FILES = COPYING
27
28 define START_STOP_DAEMON_BUILD_CMDS
29         $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/lib/compat
30         $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/utils
31 endef
32
33 define START_STOP_DAEMON_INSTALL_TARGET_CMDS
34         $(INSTALL) -m 0755 -D $(@D)/utils/start-stop-daemon \
35                 $(TARGET_DIR)/sbin/start-stop-daemon
36 endef
37
38 $(eval $(autotools-package))