You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/readline.mk

29 lines
873 B

# This file is part of MXE.
# See index.html for further information.
PKG := readline
$(PKG)_IGNORE :=
$(PKG)_VERSION := 6.3
$(PKG)_CHECKSUM := 56ba6071b9462f980c5a72ab0023893b65ba6debb4eeb475d7a563dc65cafd43
$(PKG)_SUBDIR := readline-$($(PKG)_VERSION)
$(PKG)_FILE := readline-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://ftp.gnu.org/gnu/readline/$($(PKG)_FILE)
$(PKG)_DEPS := gcc termcap
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://tiswww.case.edu/php/chet/readline/rltop.html' | \
grep 'readline-' | \
$(SED) -n 's,.*readline-\([0-9][^>]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && bash_cv_wcwidth_broken=no \
./configure \
$(MXE_CONFIGURE_OPTS) \
--enable-multibyte \
--without-purify \
--without-curses
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef