kumquat-buildroot/package/daemon/daemon.mk
Baruch Siach e8332e66b4 package/daemon: bump to version 0.8.4
Update license info. COPYING hash updated because of added reference to
additional licenses. Licenses for local snprintf and getopt
implementations do not apply, since this code is not used for Linux
targets.

Add Tatu Ylonen Permissive license of the code in pseudo.c.

Add LGPL-2.0+ license text file.

Rename BSD-3-Clause text file and update hash because of text formatting
change.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-08-29 14:55:04 +02:00

31 lines
874 B
Makefile

################################################################################
#
# daemon
#
################################################################################
DAEMON_VERSION = 0.8.4
DAEMON_SITE = http://libslack.org/daemon/download
DAEMON_LICENSE = GPL-2.0+, LGPL-2.0+, BSD-3-Clause, Tatu Ylonen permissive license
DAEMON_LICENSE_FILES = LICENSE COPYING \
LICENSES/LicenseRef-BSD-3-Clause-Almost.txt \
LICENSES/GPL-2.0-or-later.txt \
LICENSES/LGPL-2.0-or-later.txt \
LICENSES/LicenseRef-Tatu-Ylonen-Permissive.txt
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))