summarylogtreecommitdiffstats
path: root/nuvola.install
diff options
context:
space:
mode:
Diffstat (limited to 'nuvola.install')
-rw-r--r--nuvola.install36
1 files changed, 36 insertions, 0 deletions
diff --git a/nuvola.install b/nuvola.install
new file mode 100644
index 000000000000..496e76f0d6f3
--- /dev/null
+++ b/nuvola.install
@@ -0,0 +1,36 @@
+# This is a default template for a post-install scriptlet.
+# Uncomment only required functions and remove any functions
+# you don't need (and this header).
+
+## arg 1: the new package version
+#pre_install() {
+#
+#}
+
+## arg 1: the new package version
+post_install() {
+ gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor/
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+pre_upgrade() {
+ # do something here
+ gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor/
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ echo "If nuvolaplayer is freezen after upgrade, try to delete ~/.local/share/nuvolaplayer"
+}
+
+## arg 1: the old package version
+#pre_remove() {
+#}
+
+# arg 1: the old package version
+#post_remove() {
+#}
+
+# vim:set ts=2 sw=2 et: