7d2ce5f0d9
%ci:no-build
19 lines
514 B
Bash
Executable File
19 lines
514 B
Bash
Executable File
#!@TERMUX_PREFIX@/bin/sh
|
|
set -e
|
|
PREFIX="@TERMUX_PREFIX@"
|
|
|
|
if [ -d "${PREFIX}/share/fonts" ]; then
|
|
for dir in $(find "${PREFIX}/share/fonts" -mindepth 1 -type d -printf '%p/\n'); do
|
|
[ ! -d "${dir}" ] && continue
|
|
mkfontscale "${dir}"
|
|
mkfontdir "${dir}"
|
|
find "${dir}"fonts.scale -maxdepth 0 -size -3c -delete
|
|
find "${dir}"fonts.dir -maxdepth 0 -size -3c -delete
|
|
rmdir --ignore-fail-on-non-empty "${dir}"
|
|
done
|
|
fi
|
|
|
|
if [ "${1}" = "triggered" ]; then
|
|
exit 0
|
|
fi
|