pre_install() { echo -n "If you are using an AUR-Helper or building on a small partition (like /tmp)," echo -n "you might want to change the build-/cache-directory as this package is rather big" } post_install() { echo -n "Updating desktop MIME database..." gtk-update-icon-cache -q -t -f usr/share/icons/hicolor echo " done." echo -n "Updating icon cache..." update-desktop-database -q echo " done." } post_upgrade() { post_install $1 } post_remove() { post_install $1 } # vim:set sw=2 sts=2 et: