summarylogtreecommitdiffstats
path: root/ancestris.install
diff options
context:
space:
mode:
authorSte742015-10-12 19:05:14 +0200
committerSte742015-10-12 19:05:14 +0200
commit28a7a4b85de98383cc52a7e4af963bd43fc47e58 (patch)
treebbe3b04dac0f7cadb92b4737ac14911d5de53932 /ancestris.install
downloadaur-28a7a4b85de98383cc52a7e4af963bd43fc47e58.tar.gz
Initial import
Diffstat (limited to 'ancestris.install')
-rw-r--r--ancestris.install35
1 files changed, 35 insertions, 0 deletions
diff --git a/ancestris.install b/ancestris.install
new file mode 100644
index 000000000000..e986c260b89f
--- /dev/null
+++ b/ancestris.install
@@ -0,0 +1,35 @@
+# This is a default template for a post-install scriptlet. You can
+# remove any functions you don't need (and this header).
+
+# arg 1: the new package version
+pre_install() {
+ /bin/true
+}
+
+# arg 1: the new package version
+post_install() {
+ update-desktop-database >/dev/null 2>&1
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+pre_upgrade() {
+ /bin/true
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ update-desktop-database >/dev/null 2>&1
+}
+
+# arg 1: the old package version
+pre_remove() {
+ /bin/true
+}
+
+# arg 1: the old package version
+post_remove() {
+ update-desktop-database >/dev/null 2>&1
+}
+