fe6e67ba96
[Peter: renamed patches to get picked up by infrastructure] Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
27 lines
907 B
Makefile
27 lines
907 B
Makefile
#############################################################
|
|
#
|
|
# build GNU readline
|
|
#
|
|
#############################################################
|
|
READLINE_VERSION = 5.2
|
|
READLINE_SOURCE = readline-$(READLINE_VERSION).tar.gz
|
|
READLINE_SITE = $(BR2_GNU_MIRROR)/readline
|
|
READLINE_INSTALL_STAGING = YES
|
|
READLINE_INSTALL_TARGET = YES
|
|
|
|
READLINE_DEPENDENCIES = ncurses
|
|
|
|
READLINE_CONF_ENV = bash_cv_func_sigsetjmp=yes
|
|
|
|
define READLINE_INSTALL_TARGET_CMDS
|
|
$(MAKE1) DESTDIR=$(TARGET_DIR) -C $(@D) uninstall
|
|
$(MAKE1) DESTDIR=$(TARGET_DIR) -C $(@D) install-shared uninstall-doc
|
|
chmod 775 $(TARGET_DIR)/usr/lib/libreadline.so.$(READLINE_VERSION) \
|
|
$(TARGET_DIR)/usr/lib/libhistory.so.$(READLINE_VERSION)
|
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) \
|
|
$(TARGET_DIR)/usr/lib/libreadline.so.$(READLINE_VERSION) \
|
|
$(TARGET_DIR)/usr/lib/libhistory.so.$(READLINE_VERSION)
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS,package,readline))
|