605200e136
The tool was hosted at fedorahosted.org which was shut down in early 2017. According to a private conversation with the upstream maintainer, the new home for this tool is on infradead.org so far. So the SITE was adapted accordingly. Additionally the version was bumped from 1.4 to current master. This allows to drop one build patch. The other patches were recreated with Git. Cc: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: Alexander Dahl <post@lespocky.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
980 B
Makefile
34 lines
980 B
Makefile
################################################################################
|
|
#
|
|
# dropwatch
|
|
#
|
|
################################################################################
|
|
|
|
DROPWATCH_VERSION = 7c33d8a8ed105b07a46b55d71d93b36ed34c16db
|
|
DROPWATCH_SITE = git://git.infradead.org/users/nhorman/dropwatch.git
|
|
DROPWATCH_DEPENDENCIES = binutils libnl readline host-pkgconf
|
|
DROPWATCH_LICENSE = GPL-2.0
|
|
DROPWATCH_LICENSE_FILES = COPYING
|
|
|
|
# libbfd may be linked to libintl
|
|
# Ugly... but LDFLAGS are hardcoded anyway
|
|
DROPWATCH_LDFLAGS = \
|
|
$(TARGET_LDFLAGS) -lbfd -lreadline -lnl-3 -lnl-genl-3 \
|
|
-lpthread -lncurses -lm
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
DROPWATCH_LDFLAGS += -lintl
|
|
endif
|
|
|
|
define DROPWATCH_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
LDFLAGS="$(DROPWATCH_LDFLAGS)" build
|
|
endef
|
|
|
|
define DROPWATCH_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/src/dropwatch \
|
|
$(TARGET_DIR)/usr/bin/dropwatch
|
|
endef
|
|
|
|
$(eval $(generic-package))
|