diff options
Diffstat (limited to 'community/nemiver/nemiver.install')
-rw-r--r-- | community/nemiver/nemiver.install | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/community/nemiver/nemiver.install b/community/nemiver/nemiver.install index a14d235b9..f6a1886e7 100644 --- a/community/nemiver/nemiver.install +++ b/community/nemiver/nemiver.install @@ -1,21 +1,15 @@ -pkgname=nemiver - -post_install() { - glib-compile-schemas usr/share/glib-2.0/schemas - update-desktop-database -q - gtk-update-icon-cache -f -q -t usr/share/icons/hicolor -} - -pre_upgrade() { - if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then - usr/sbin/gconfpkg --uninstall ${pkgname} - fi +post_upgrade() { + usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas + #update-desktop-database -q + #gtk-update-icon-cache -q -t -f usr/share/icons/hicolor } -post_upgrade() { - post_install $1 +post_install() { + post_upgrade } post_remove() { - post_install $1 + post_upgrade } + +# vim:set ts=2 sw=2 et: |