mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
6d8e0b981a
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
16 lines
343 B
Bash
16 lines
343 B
Bash
# Ugly hack since this version linked statically to icu4c-49
|
|
## thanks to willysr
|
|
(
|
|
cd /usr/lib${LIBDIRSUFFIX}
|
|
if ! [ -f libicule.so.49 ]; then
|
|
ln -s libicule.so.51 libicule.so.49
|
|
fi
|
|
|
|
if ! [ -f libicuuc.so.49 ]; then
|
|
ln -s libicuuc.so.51 libicuuc.so.49
|
|
fi
|
|
|
|
if ! [ -f libicudata.so.49 ]; then
|
|
ln -s libicudata.so.51 libicudata.so.49
|
|
fi
|
|
)
|