summarylogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorGaetan Bisson2015-06-08 11:19:46 -1000
committerGaetan Bisson2015-06-08 11:19:46 -1000
commitcc85271f44c760e8a19cb2d912d08311c5e54865 (patch)
treed6fe745918f4f17982ac8eabd602ead5d02cc0c8 /install
downloadaur-cc85271f44c760e8a19cb2d912d08311c5e54865.tar.gz
initial commit
Diffstat (limited to 'install')
-rw-r--r--install13
1 files changed, 13 insertions, 0 deletions
diff --git a/install b/install
new file mode 100644
index 000000000000..62b95fd68610
--- /dev/null
+++ b/install
@@ -0,0 +1,13 @@
+post_install() {
+ type update-desktop-database &>/dev/null && update-desktop-database -q
+ type gtk-update-icon-cache &>/dev/null && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+ true
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}