Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
################################################################################
#
# bmon
#
################################################################################
BMON_VERSION = 3.7
BMON_SITE = https://github.com/tgraf/bmon/releases/download/v$(BMON_VERSION)
BMON_DEPENDENCIES = host-pkgconf libconfuse libnl ncurses
BMON_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
BMON_LICENSE = BSD-2c, MIT
BMON_LICENSE_FILES = LICENSE.BSD LICENSE.MIT
# link dynamically unless explicitly requested otherwise
ifeq ($(BR2_STATIC_LIBS),)
BMON_CONF_OPTS += --disable-static
else
# forgets to explicitly link with pthread for libnl
BMON_CONF_OPTS += LIBS=-lpthread
endif
$(eval $(autotools-package))