2013-07-22 02:09:23 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# dropwatch
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2019-07-19 23:10:03 +02:00
|
|
|
DROPWATCH_VERSION = 1.5.1
|
|
|
|
DROPWATCH_SITE = $(call github,nhorman,dropwatch,v$(DROPWATCH_VERSION))
|
2019-08-01 22:50:30 +02:00
|
|
|
DROPWATCH_DEPENDENCIES = libnl readline host-pkgconf $(TARGET_NLS_DEPENDENCIES)
|
2017-03-30 15:43:32 +02:00
|
|
|
DROPWATCH_LICENSE = GPL-2.0
|
2013-07-22 02:09:23 +02:00
|
|
|
DROPWATCH_LICENSE_FILES = COPYING
|
2019-07-19 23:10:03 +02:00
|
|
|
# From git
|
|
|
|
DROPWATCH_AUTORECONF = YES
|
2013-07-22 02:09:23 +02:00
|
|
|
|
2019-07-19 23:10:03 +02:00
|
|
|
# Autoreconf step fails due to missing m4 directory
|
|
|
|
define DROPWATCH_CREATE_M4_DIR
|
|
|
|
mkdir -p $(@D)/m4
|
2013-07-22 02:09:23 +02:00
|
|
|
endef
|
2019-07-19 23:10:03 +02:00
|
|
|
DROPWATCH_PRE_CONFIGURE_HOOKS += DROPWATCH_CREATE_M4_DIR
|
2013-07-22 02:09:23 +02:00
|
|
|
|
2019-08-01 22:50:30 +02:00
|
|
|
DROPWATCH_CONF_OPTS = --without-bfd
|
2019-07-19 23:10:03 +02:00
|
|
|
DROPWATCH_MAKE_OPTS = LIBS=$(TARGET_NLS_LIBS)
|
2013-07-22 02:09:23 +02:00
|
|
|
|
2019-07-19 23:10:03 +02:00
|
|
|
$(eval $(autotools-package))
|