X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/81a8da52cd52eab4716adf4ace173bda8d92b012..fb9f9cdc813406041715d4c692f2b18cfd418cee:/package/ncurses/Makefile diff --git a/package/ncurses/Makefile b/package/ncurses/Makefile index cbbb098cb..804358850 100644 --- a/package/ncurses/Makefile +++ b/package/ncurses/Makefile @@ -17,6 +17,7 @@ PKG_SOURCE_URL:=@GNU/ncurses PKG_MD5SUM:=cce05daf61a64501ef6cd8da1f727ec6 PKG_INSTALL:=1 +PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk @@ -50,11 +51,18 @@ CONFIGURE_ARGS += \ --without-debug \ --without-profile \ --without-progs \ + --disable-big-core \ + --disable-home-terminfo \ --with-normal \ --with-shared \ --with-terminfo-dirs=/usr/share/terminfo \ --with-default-terminfo-dir=/usr/share/terminfo +ifeq ($(HOST_OS),FreeBSD) + CONFIGURE_ARGS += + --with-terminfo=/usr/share/terminfo.db +endif + ifeq ($(BUILD_VARIANT),libncursesw) CONFIGURE_ARGS += \ --enable-widec \ @@ -77,6 +85,7 @@ endef define Package/libncurses/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{curses,ncurses,panel,menu,form}.so* $(1)/usr/lib/ +ifneq ($(HOST_OS),FreeBSD) $(INSTALL_DIR) $(1)/usr/share/terminfo (cd $(PKG_INSTALL_DIR)/usr/share/terminfo; \ for dir in ??; do \ @@ -89,6 +98,7 @@ define Package/libncurses/install $(CP) $(PKG_INSTALL_DIR)/usr/share/terminfo/$$$$file \ $(1)/usr/share/terminfo/$$$$file; \ done +endif endef define Package/libncursesw/install