diff options
Diffstat (limited to 'community/alleyoop/alleyoop.install')
-rw-r--r-- | community/alleyoop/alleyoop.install | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/alleyoop/alleyoop.install b/community/alleyoop/alleyoop.install index 4f8183a70..16e3af018 100644 --- a/community/alleyoop/alleyoop.install +++ b/community/alleyoop/alleyoop.install @@ -1,17 +1,19 @@ pkgname=alleyoop post_install() { -usr/sbin/gconfpkg --install ${pkgname} + usr/sbin/gconfpkg --install ${pkgname} +} + +pre_remove() { + usr/sbin/gconfpkg --uninstall ${pkgname} } pre_upgrade() { -pre_remove $1 + pre_remove $1 } post_upgrade() { -post_install $1 + post_install $1 } -pre_remove() { -usr/sbin/gconfpkg --uninstall ${pkgname} -} +# vim:set ts=2 sw=2 et: |