mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
14 lines
273 B
Text
14 lines
273 B
Text
|
post_install() {
|
||
|
[[ -x usr/bin/update-desktop-database ]] && update-desktop-database -q || true
|
||
|
[[ -x usr/bin/gtk-update-icon-cache ]] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor || true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
|
||
|
post_remove() {
|
||
|
post_install
|
||
|
}
|