termux-packages/x11-packages/xorg-mkfontscale/postrm

13 lines
394 B
Plaintext
Raw Normal View History

#!@TERMUX_PREFIX@/bin/sh
2018-09-10 00:42:26 +02:00
set -e
PREFIX="@TERMUX_PREFIX@"
2018-09-10 00:42:26 +02:00
if [ -d "${PREFIX}/share/fonts" ]; then
rm -f "${PREFIX}/share/fonts/.uuid"
for dir in $(find "${PREFIX}/share/fonts" -mindepth 1 -type d -printf '%p/\n'); do
[ ! -d "${dir}" ] && continue
rm -f "${dir}/.uuid" "${dir}/fonts.scale" "${dir}/fonts.dir"
rmdir --ignore-fail-on-non-empty "${dir}"
done
fi