9e30cec5b0
Build is broken since bump of skalibs to version 2.10.0.2 in commit4d5587cb56
because skalibs removed webipc.h in version 2.10.0.0 ande557bab0dc
So bump to version 1.0.6.1 to retrieve the following commitca8d2c96ea
Update hash of COPYING (update in year:5e17662d13
1de5c2d7c6
) While at it, also update indentation in hash file (two spaces) Fixes: - http://autobuild.buildroot.org/results/fe879267675a80bfc5ba17341144feeee53dc197 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# s6-linux-init
|
|
#
|
|
################################################################################
|
|
|
|
S6_LINUX_INIT_VERSION = 1.0.6.1
|
|
S6_LINUX_INIT_SITE = http://skarnet.org/software/s6-linux-init
|
|
S6_LINUX_INIT_LICENSE = ISC
|
|
S6_LINUX_INIT_LICENSE_FILES = COPYING
|
|
S6_LINUX_INIT_DEPENDENCIES = s6 s6-linux-utils s6-portable-utils
|
|
|
|
S6_LINUX_INIT_CONF_OPTS = \
|
|
--prefix=/usr \
|
|
--with-sysdeps=$(STAGING_DIR)/usr/lib/skalibs/sysdeps \
|
|
--with-include=$(STAGING_DIR)/usr/include \
|
|
--with-dynlib=$(STAGING_DIR)/usr/lib \
|
|
--with-lib=$(STAGING_DIR)/usr/lib/execline \
|
|
--with-lib=$(STAGING_DIR)/usr/lib/s6 \
|
|
--with-lib=$(STAGING_DIR)/usr/lib/skalibs \
|
|
$(if $(BR2_STATIC_LIBS),,--disable-allstatic) \
|
|
$(SHARED_STATIC_LIBS_OPTS)
|
|
|
|
define S6_LINUX_INIT_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure $(S6_LINUX_INIT_CONF_OPTS))
|
|
endef
|
|
|
|
define S6_LINUX_INIT_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define S6_LINUX_INIT_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|