2010-06-08 05:54:36 +08:00
|
|
|
post_install() {
|
2010-12-21 07:23:30 +08:00
|
|
|
[[ $(type -p gtk-update-icon-cache) ]] && /usr/bin/gtk-update-icon-cache -qtf usr/share/icons/hicolor
|
|
|
|
[[ $(type -p update-desktop-database) ]] && /usr/bin/update-desktop-database -q usr/share/applications
|
2011-02-15 05:52:14 +08:00
|
|
|
/bin/true
|
2010-12-21 07:23:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
2012-01-15 12:55:09 +08:00
|
|
|
post_install $1
|
2011-02-15 05:52:14 +08:00
|
|
|
/bin/true
|
2010-12-21 07:23:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
post_remove() {
|
2012-01-15 12:55:09 +08:00
|
|
|
post_install $1
|
2011-02-15 05:52:14 +08:00
|
|
|
/bin/true
|
2010-06-08 05:54:36 +08:00
|
|
|
}
|
2012-01-15 12:55:09 +08:00
|
|
|
|