mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
16 lines
260 B
Plaintext
16 lines
260 B
Plaintext
post_install() {
|
|
update-desktop-database -q
|
|
if [[ -x /usr/bin/mktexlsr ]]; then
|
|
echo ">>> updating the filename database for texlive..."
|
|
mktexlsr --quiet usr/share/texmf
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|