diff options
Diffstat (limited to 'community/gnome-commander/gnome-commander.install')
-rw-r--r-- | community/gnome-commander/gnome-commander.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/gnome-commander/gnome-commander.install b/community/gnome-commander/gnome-commander.install new file mode 100644 index 000000000..e1b6d3a0c --- /dev/null +++ b/community/gnome-commander/gnome-commander.install @@ -0,0 +1,22 @@ +pkgname=gnome-commander + +post_install() { + usr/sbin/gconfpkg --install ${pkgname} + update-desktop-database -q +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + usr/sbin/gconfpkg --uninstall ${pkgname} +} + +post_remove() { + update-desktop-database -q +} |