mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
22 lines
652 B
Plaintext
22 lines
652 B
Plaintext
post_install() {
|
|
|
|
update-mime-database usr/share/mime > /dev/null 2>&1
|
|
kbuildsycoca4 --noincremental &> /dev/null
|
|
|
|
echo " * You may want to pacman -Ss libreoffice-extensions"
|
|
echo " to see what extensions are prepared to install"
|
|
echo " * it's recommended to install {hunspell,mythes,hyphen}-xx pkg for spell checking"
|
|
echo " * make sure you have installed some ttf fonts (ttf-dejavu recommended)"
|
|
}
|
|
|
|
post_upgrade() {
|
|
# post_install $1
|
|
update-mime-database usr/share/mime > /dev/null 2>&1
|
|
kbuildsycoca4 --noincremental &> /dev/null
|
|
}
|
|
|
|
post_remove() {
|
|
update-mime-database usr/share/mime > /dev/null 2>&1
|
|
kbuildsycoca4 --noincremental &> /dev/null
|
|
}
|