From ef6e5a70c84bbfa95c62bfce054d69f3c9a2f17d Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 22 Apr 2021 23:48:53 +0200 Subject: [PATCH] - ncurses: add tput and tset to image --- make/target-libs.mk | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/make/target-libs.mk b/make/target-libs.mk index ba25f09c..cfcfce8b 100644 --- a/make/target-libs.mk +++ b/make/target-libs.mk @@ -181,8 +181,11 @@ NCURSES_CONF_OPTS = \ --with-shared \ --with-fallbacks='linux vt100 xterm' \ --disable-big-core \ + --disable-db-install \ + --with-progs \ + --without-termlib \ + --without-ticlib \ --without-manpages \ - --without-progs \ --without-tests \ --without-debug \ --without-ada \ @@ -195,8 +198,9 @@ ncurses: $(DL_DIR)/$(NCURSES_SOURCE) | $(TARGET_DIR) $(call APPLY_PATCHES,$(PKG_PATCHES_DIR)) $(CHDIR)/$(PKG_DIR); \ $(CONFIGURE); \ - $(MAKE) libs; \ - $(MAKE) install.libs DESTDIR=$(TARGET_DIR) + $(MAKE); \ + $(MAKE) install DESTDIR=$(TARGET_DIR) + $(TARGET_RM) $(addprefix $(TARGET_bindir)/,captoinfo clear infocmp infotocap reset tabs tic toe) $(TARGET_RM) $(addprefix $(TARGET_libdir)/,libform* libmenu* libpanel*) $(TARGET_RM) $(addprefix $(TARGET_libdir)/pkgconfig/,form.pc menu.pc panel.pc) $(REWRITE_CONFIG_SCRIPTS)