mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-17 06:52:23 +00:00
Ports: Add compatibility symlinks to ncurses
Some applications search for the external version of libtic and
libtinfo, which are no longer present after
91ad7754fe
.
Having a symlink fixes that, since libncurses exports the necessary
functions if they aren't available as a seperate library.
This commit is contained in:
parent
bf4e536f00
commit
e9ce1a8d83
Notes:
sideshowbarker
2024-07-18 02:48:56 +09:00
Author: https://github.com/timschumi
Commit: e9ce1a8d83
Pull-request: https://github.com/SerenityOS/serenity/pull/10430
1 changed files with 6 additions and 0 deletions
|
@ -17,3 +17,9 @@ auth_type="sha256"
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
export CPPFLAGS="-P"
|
export CPPFLAGS="-P"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
ln -sv libncurses.so "${SERENITY_INSTALL_ROOT}/usr/local/lib/libcurses.so"
|
||||||
|
ln -sv libncurses.so "${SERENITY_INSTALL_ROOT}/usr/local/lib/libtic.so"
|
||||||
|
ln -sv libncurses.so "${SERENITY_INSTALL_ROOT}/usr/local/lib/libtinfo.so"
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue