c074fade2c
Dropwatch links with readline, which is GPL-3.0+, so not compatible with GPL-2.0. When asked about this, upstream has clarified that the license really is GPL-2.0+: https://github.com/nhorman/dropwatch/issues/14 Signed-off-by: Peter Korsgaard <peter@korsgaard.com> [yann.morin.1998@free.fr: add a coomet as suggested by Baruc] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Baruch Siach <baruch@tkos.co.il>
27 lines
851 B
Makefile
27 lines
851 B
Makefile
################################################################################
|
|
#
|
|
# dropwatch
|
|
#
|
|
################################################################################
|
|
|
|
DROPWATCH_VERSION = 1.5.1
|
|
DROPWATCH_SITE = $(call github,nhorman,dropwatch,v$(DROPWATCH_VERSION))
|
|
DROPWATCH_DEPENDENCIES = libnl readline host-pkgconf $(TARGET_NLS_DEPENDENCIES)
|
|
# Until upstream updates their tree with a proper license
|
|
# blurb: https://github.com/nhorman/dropwatch/issues/14
|
|
DROPWATCH_LICENSE = GPL-2.0+
|
|
DROPWATCH_LICENSE_FILES = COPYING
|
|
# From git
|
|
DROPWATCH_AUTORECONF = YES
|
|
|
|
# Autoreconf step fails due to missing m4 directory
|
|
define DROPWATCH_CREATE_M4_DIR
|
|
mkdir -p $(@D)/m4
|
|
endef
|
|
DROPWATCH_PRE_CONFIGURE_HOOKS += DROPWATCH_CREATE_M4_DIR
|
|
|
|
DROPWATCH_CONF_OPTS = --without-bfd
|
|
DROPWATCH_MAKE_OPTS = LIBS=$(TARGET_NLS_LIBS)
|
|
|
|
$(eval $(autotools-package))
|