kumquat-buildroot/package/wavemon/wavemon.mk
Fabrice Fontaine 5cae1a0d67 package/wavemon: bump to version 0.9.4
Use the new LICENSE file added in version 0.9.3 with
2251870415
as COPYING has been dropped with
bfa12c46c7
The text has been updated with https URLs.

https://github.com/uoaerg/wavemon/releases/tag/v0.9.2
https://github.com/uoaerg/wavemon/releases/tag/v0.9.3
https://github.com/uoaerg/wavemon/releases/tag/v0.9.4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2021-09-23 22:32:58 +02:00

24 lines
638 B
Makefile

################################################################################
#
# wavemon
#
################################################################################
WAVEMON_VERSION = 0.9.4
WAVEMON_SITE = $(call github,uoaerg,wavemon,v$(WAVEMON_VERSION))
WAVEMON_LICENSE = GPL-3.0+
WAVEMON_LICENSE_FILES = LICENSE
WAVEMON_DEPENDENCIES = host-pkgconf libnl ncurses
# Handwritten Makefile.in, automake isn't used
WAVEMON_MAKE_OPTS = CC="$(TARGET_CC)"
ifeq ($(BR2_PACKAGE_LIBCAP),y)
WAVEMON_CONF_OPTS += --with-libcap
WAVEMON_DEPENDENCIES += libcap
else
WAVEMON_CONF_OPTS += --without-libcap
endif
$(eval $(autotools-package))