2021-04-25 18:29:28 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
|
|
|
|
port=readline
|
2022-04-01 06:02:12 +03:00
|
|
|
version=8.1.2
|
2021-04-25 18:29:28 +03:00
|
|
|
useconfigure=true
|
2022-05-25 13:51:13 +03:00
|
|
|
config_sub_paths=("support/config.sub")
|
2022-01-08 16:32:29 +03:00
|
|
|
use_fresh_config_sub=true
|
2022-04-01 06:02:12 +03:00
|
|
|
files="https://ftpmirror.gnu.org/gnu/readline/readline-${version}.tar.gz readline-${version}.tar.gz 7589a2381a8419e68654a47623ce7dfcb756815c8fee726b98f90bf668af7bc6"
|
2021-07-29 15:57:26 +03:00
|
|
|
auth_type=sha256
|
2022-06-08 01:39:32 +03:00
|
|
|
configopts=(
|
|
|
|
"--disable-static"
|
|
|
|
"--enable-shared"
|
|
|
|
)
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
# readline specifies termcap as a dependency in its pkgconfig file, without checking if it exists.
|
|
|
|
# Remove it manually to keep other ports from discarding readline because termcap is supposedly missing.
|
|
|
|
sed -i -e '/^Requires.private:/s/termcap//' "${SERENITY_INSTALL_ROOT}/usr/local/lib/pkgconfig/readline.pc"
|
|
|
|
}
|