diff options
Diffstat (limited to 'community/alleyoop/alleyoop.install')
-rw-r--r-- | community/alleyoop/alleyoop.install | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/community/alleyoop/alleyoop.install b/community/alleyoop/alleyoop.install index 16e3af018..f6a1886e7 100644 --- a/community/alleyoop/alleyoop.install +++ b/community/alleyoop/alleyoop.install @@ -1,19 +1,15 @@ -pkgname=alleyoop - -post_install() { - usr/sbin/gconfpkg --install ${pkgname} -} - -pre_remove() { - usr/sbin/gconfpkg --uninstall ${pkgname} +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 } -pre_upgrade() { - pre_remove $1 +post_install() { + post_upgrade } -post_upgrade() { - post_install $1 +post_remove() { + post_upgrade } # vim:set ts=2 sw=2 et: |