diff options
Diffstat (limited to 'community/gphpedit/gphpedit.install')
-rw-r--r-- | community/gphpedit/gphpedit.install | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/community/gphpedit/gphpedit.install b/community/gphpedit/gphpedit.install new file mode 100644 index 000000000..21f20806c --- /dev/null +++ b/community/gphpedit/gphpedit.install @@ -0,0 +1,16 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + /bin/true +} + +post_remove() { + post_install +} + |