mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
16 lines
185 B
Text
16 lines
185 B
Text
|
|
post_upgrade() {
|
|
|
|
if [[ -e /usr/bin/update-desktop-database ]]; then
|
|
update-desktop-database -q
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
post_upgrade $1
|
|
}
|
|
|
|
pre_remove() {
|
|
post_upgrade $1
|
|
}
|
|
|