update buildroot to 2017.02.11
This commit is contained in:
9
bsp/buildroot-2017.02.11/package/htop/Config.in
Normal file
9
bsp/buildroot-2017.02.11/package/htop/Config.in
Normal file
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_HTOP
|
||||
bool "htop"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
htop is an interactive text-mode process viewer for Linux.
|
||||
It aims to be a better top.
|
||||
|
||||
http://hisham.hm/htop/
|
||||
3
bsp/buildroot-2017.02.11/package/htop/htop.hash
Normal file
3
bsp/buildroot-2017.02.11/package/htop/htop.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Hashes from: http://www.freelists.org/post/htop/ANN-htop-202
|
||||
md5 7d354d904bad591a931ad57e99fea84a htop-2.0.2.tar.gz
|
||||
sha1 201f793f13dce2448e36047079875b9bd5bba75a htop-2.0.2.tar.gz
|
||||
28
bsp/buildroot-2017.02.11/package/htop/htop.mk
Normal file
28
bsp/buildroot-2017.02.11/package/htop/htop.mk
Normal file
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# htop
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HTOP_VERSION = 2.0.2
|
||||
HTOP_SITE = http://hisham.hm/htop/releases/$(HTOP_VERSION)
|
||||
HTOP_DEPENDENCIES = ncurses
|
||||
# Prevent htop build system from searching the host paths
|
||||
HTOP_CONF_ENV = HTOP_NCURSES_CONFIG_SCRIPT=$(STAGING_DIR)/usr/bin/$(NCURSES_CONFIG_SCRIPTS)
|
||||
HTOP_LICENSE = GPLv2
|
||||
HTOP_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
|
||||
HTOP_CONF_OPTS += --enable-unicode
|
||||
else
|
||||
HTOP_CONF_OPTS += --disable-unicode
|
||||
endif
|
||||
|
||||
# ARC uses an old uClibc that needs dladdr() for backtrace support,
|
||||
# which doesn't work for static only scenario, so as a workaround, we
|
||||
# pretend that execinfo.h is not available.
|
||||
ifeq ($(BR2_arc)$(BR2_STATIC_LIBS),yy)
|
||||
HTOP_CONF_ENV += ac_cv_header_execinfo_h=no
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user