aa5ac7f166
Drop upstream patch. Add another patch to fix build with musl. Update COPYING hash because of date change. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
27 lines
651 B
Makefile
27 lines
651 B
Makefile
################################################################################
|
|
#
|
|
# daemon
|
|
#
|
|
################################################################################
|
|
|
|
DAEMON_VERSION = 0.8
|
|
DAEMON_SITE = http://libslack.org/daemon/download
|
|
DAEMON_LICENSE = GPL-2.0+
|
|
DAEMON_LICENSE_FILES = LICENSE COPYING
|
|
|
|
define DAEMON_CONFIGURE_CMDS
|
|
(cd $(@D); ./configure)
|
|
endef
|
|
|
|
define DAEMON_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define DAEMON_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) DEB_BUILD_OPTIONS=nostrip \
|
|
$(MAKE) PREFIX=$(TARGET_DIR)/usr -C $(@D) \
|
|
install-daemon-bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|