148ea737c0
The release contains the configure scripts, as such we don't need the autoreconf anymore. Also add a hash file since there is a release tarball uploaded by the maintainer. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
632 B
Makefile
22 lines
632 B
Makefile
################################################################################
|
|
#
|
|
# bmon
|
|
#
|
|
################################################################################
|
|
|
|
BMON_VERSION = 3.5
|
|
BMON_SITE = https://github.com/tgraf/bmon/releases/download/v$(BMON_VERSION)/
|
|
BMON_DEPENDENCIES = host-pkgconf libconfuse libnl ncurses
|
|
BMON_LICENSE = BSD-2c
|
|
BMON_LICENSE_FILES = LICENSE
|
|
|
|
# link dynamically unless explicitly requested otherwise
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),)
|
|
BMON_CONF_OPTS += --disable-static
|
|
else
|
|
# forgets to explicitly link with pthread for libnl
|
|
BMON_CONF_OPTS += LIBS=-lpthread
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|