mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 03:57:15 +08:00
22 lines
423 B
Plaintext
22 lines
423 B
Plaintext
post_install() {
|
|
echo -n "Updating font cache... "
|
|
mkfontscale /usr/share/fonts/wenquanyi/wqy-microhei
|
|
mkfontdir /usr/share/fonts/wenquanyi/wqy-microhei
|
|
fc-cache -f /usr/share/fonts/wenquanyi/wqy-microhei > /dev/null
|
|
echo "done."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
rm -r /usr/share/fonts/wenquanyi/wqy-microhei
|
|
rmdir --ignore-fail-on-non-empty /usr/share/fonts/wenquanyi/
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|