mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
35 lines
1.0 KiB
Makefile
35 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# readline
|
|
#
|
|
################################################################################
|
|
|
|
READLINE_VERSION = 8.3
|
|
READLINE_SITE = $(BR2_GNU_MIRROR)/readline
|
|
READLINE_INSTALL_STAGING = YES
|
|
READLINE_DEPENDENCIES = ncurses host-autoconf
|
|
HOST_READLINE_DEPENDENCIES = host-ncurses host-autoconf
|
|
READLINE_CONF_ENV = bash_cv_func_sigsetjmp=yes \
|
|
bash_cv_wcwidth_broken=no
|
|
READLINE_CONF_OPTS = \
|
|
--disable-install-examples \
|
|
--with-curses \
|
|
--with-shared-termcap-library
|
|
READLINE_LICENSE = GPL-3.0+
|
|
READLINE_LICENSE_FILES = COPYING
|
|
READLINE_CPE_ID_VENDOR = gnu
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE_BRACKETED_PASTE),y)
|
|
READLINE_CONF_OPTS += --enable-bracketed-paste-default
|
|
else
|
|
READLINE_CONF_OPTS += --disable-bracketed-paste-default
|
|
endif
|
|
|
|
define READLINE_INSTALL_INPUTRC
|
|
$(INSTALL) -D -m 644 package/readline/inputrc $(TARGET_DIR)/etc/inputrc
|
|
endef
|
|
READLINE_POST_INSTALL_TARGET_HOOKS += READLINE_INSTALL_INPUTRC
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|