2013-07-22 02:09:23 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# dropwatch
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
DROPWATCH_VERSION = 1.4
|
|
|
|
DROPWATCH_SOURCE = dropwatch-$(DROPWATCH_VERSION).tar.bz2
|
|
|
|
DROPWATCH_SITE = https://git.fedorahosted.org/cgit/dropwatch.git/snapshot/
|
|
|
|
DROPWATCH_DEPENDENCIES = binutils libnl readline host-pkgconf
|
|
|
|
DROPWATCH_LICENSE = GPLv2
|
|
|
|
DROPWATCH_LICENSE_FILES = COPYING
|
|
|
|
|
2013-07-31 21:26:41 +02:00
|
|
|
# libbfd may be linked to libintl
|
|
|
|
# Ugly... but LDFLAGS are hardcoded anyway
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
|
|
DROPWATCH_LDFLAGS = LDFLAGS="-lintl -lbfd -lreadline -lnl-3 -lnl-genl-3"
|
|
|
|
endif
|
|
|
|
|
2013-07-22 02:09:23 +02:00
|
|
|
define DROPWATCH_BUILD_CMDS
|
2013-07-31 21:26:41 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
|
|
$(DROPWATCH_LDFLAGS) build
|
2013-07-22 02:09:23 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define DROPWATCH_CLEAN_CMDS
|
2013-07-31 21:26:41 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) clean
|
2013-07-22 02:09:23 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define DROPWATCH_INSTALL_TARGET_CMDS
|
2013-07-31 21:26:41 +02:00
|
|
|
$(INSTALL) -D -m 0755 $(@D)/src/dropwatch \
|
|
|
|
$(TARGET_DIR)/usr/bin/dropwatch
|
2013-07-22 02:09:23 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define DROPWATCH_UNINSTALL_CMDS
|
2013-07-31 21:26:41 +02:00
|
|
|
rm -f $(TARGET_DIR)/usr/bin/dropwatch
|
2013-07-22 02:09:23 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|