summarylogtreecommitdiffstats
path: root/balsamiqmockups.install
diff options
context:
space:
mode:
authorDavid Manouchehri2015-08-26 11:55:03 -0400
committerDavid Manouchehri2015-08-26 11:55:03 -0400
commit285e0b972e4d513e5cfcb6e8dcedbfa4563a169d (patch)
treee558e8b44e2d90c316c6ea0ea6a30c7f98b32430 /balsamiqmockups.install
downloadaur-285e0b972e4d513e5cfcb6e8dcedbfa4563a169d.tar.gz
Initial import from AUR3.
Diffstat (limited to 'balsamiqmockups.install')
-rwxr-xr-xbalsamiqmockups.install33
1 files changed, 33 insertions, 0 deletions
diff --git a/balsamiqmockups.install b/balsamiqmockups.install
new file mode 100755
index 000000000000..1b1fc5a73684
--- /dev/null
+++ b/balsamiqmockups.install
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+desktop_update() {
+ if [ -x usr/bin/update-mime-database ]; then
+ update-mime-database usr/share/mime > /dev/null 2>&1
+ fi
+
+ if [ -x usr/bin/xdg-icon-resource ]; then
+ xdg-icon-resource forceupdate --theme hicolor > /dev/null 2>&1
+ fi
+
+ if [ -x usr/bin/update-desktop-database ]; then
+ usr/bin/update-desktop-database -q
+ fi
+}
+
+# arg 1: the new package version
+post_install() {
+ desktop_update
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ post_install "$1"
+}
+
+# arg 1: the old package version
+post_remove() {
+ desktop_update
+}
+
+# vim:set ts=2 sw=2 ft=sh et: