summaryrefslogtreecommitdiff
path: root/community-testing/doublecmd/doublecmd.install
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/doublecmd/doublecmd.install')
-rw-r--r--community-testing/doublecmd/doublecmd.install34
1 files changed, 0 insertions, 34 deletions
diff --git a/community-testing/doublecmd/doublecmd.install b/community-testing/doublecmd/doublecmd.install
deleted file mode 100644
index 40d56528f..000000000
--- a/community-testing/doublecmd/doublecmd.install
+++ /dev/null
@@ -1,34 +0,0 @@
-update_icons() {
-
- # Setup Menus
- if which update-desktop-database
- then
- update-desktop-database -q /usr/share/applications
- fi
-
- # Setup MIME types
- if which update-mime-database
- then
- update-mime-database /usr/share/mime >/dev/null
- fi
-
- # Setup Icons
- touch -c /usr/share/icons/hicolor
- if which gtk-update-icon-cache
- then
- gtk-update-icon-cache -tq /usr/share/icons/hicolor
- fi
-
-}
-
-post_install() {
- update_icons
-}
-
-post_upgrade() {
- update_icons
-}
-
-post_remove() {
- update_icons
-}