mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
update 8.1 (2020-12-06) to 8.1.2 (2022-01-05) Patches: Readline-8.1 Official patch 1 - https://lists.gnu.org/archive/html/bug-readline/2021-05/msg00000.html - https://ftp.gnu.org/gnu/readline/readline-8.1-patches/readline81-001 Readline-8.1 Official patch 2 - https://ftp.gnu.org/gnu/readline/readline-8.1-patches/readline81-002
23 lines
910 B
Makefile
23 lines
910 B
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.1.2"
|
|
PKG_SHA256="7589a2381a8419e68654a47623ce7dfcb756815c8fee726b98f90bf668af7bc6"
|
|
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() {
|
|
rm -rf ${INSTALL}/usr/share/readline
|
|
}
|