mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
17 lines
343 B
Bash
17 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
|
||
|
)
|