updated on Tue Jan 10 00:10:07 UTC 2012
[aur-mirror.git] / cellwriter / cellwriter.install
bloba8a59f25b37e716764d41bb7e81b6ec57d4457a5
1 # This is the install script for cellwriter
3 # arg 1:  the new package version
4 post_install() {
5   echo "Updating GTK icon cache ..."
6   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
9 # arg 1:  the new package version
10 post_upgrade() {
11   echo "Updating GTK icon cache ..."
12   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
15 # arg 1:  the old package version
16 post_remove() {
17   echo "Updating GTK icon cache ..."
18   /usr/bin/gtk-update-icon-cache -f -t /usr/share/icons/hicolor
21 op=$1
22 shift
23 [ "$(type -t "$op")" = "function" ] && $op "$@"
25 # vim:set ts=2 sw=2 et: