updated on Sat Jan 21 04:00:54 UTC 2012
[aur-mirror.git] / orage-git / orage.install
blob80977c1ca8a4dc804bd2a20ba45fb57185b29d8f
1 # arg 1:  the new package version
2 post_install() {
3   echo "Updating icon cache"
4   gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
7 # arg 1:  the new package version
8 # arg 2:  the old package version
9 post_upgrade() {
10   echo "Updating icon cache"
11   gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
14 # arg 1:  the old package version
15 post_remove() {
16   echo "Updating icon cache"
17   gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
20 op=$1
21 shift
22 [ "$(type -t "$op")" = "function" ] && $op "$@"
24 # vim:set ts=2 sw=2 et: