forked from libretro/Lakka-LibreELEC
16616a3b7d
https://tiswww.cwru.edu/php/chet/readline/CHANGES https://tiswww.cwru.edu/php/chet/readline/README
26 lines
1.0 KiB
Makefile
26 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="readline"
|
|
PKG_VERSION="8.2"
|
|
PKG_SHA256="3feb7171f16a84ee82ca18a36d7b9be109a52c04f492a053331d7d1095007c35"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="http://www.gnu.org/software/readline/"
|
|
PKG_URL="http://ftpmirror.gnu.org/readline/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain ncurses"
|
|
PKG_LONGDESC="The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in."
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="bash_cv_wcwidth_broken=no \
|
|
--disable-shared \
|
|
--enable-static \
|
|
--with-curses"
|
|
|
|
post_makeinstall_target() {
|
|
# fix static library
|
|
sed -i 's/-lreadline/-lreadline -lncursesw/' ${SYSROOT_PREFIX}/usr/lib/pkgconfig/readline.pc
|
|
|
|
rm -rf ${INSTALL}/usr/share/readline
|
|
}
|