summarylogtreecommitdiffstats
path: root/kalu.install
diff options
context:
space:
mode:
authorRhinoceros2015-06-09 08:29:15 +1000
committerRhinoceros2015-06-09 08:29:15 +1000
commit2da04a4a1f74002deacb57df37220abe036f3142 (patch)
tree08f655e6552061abef4fad934c177371cc2e3b9b /kalu.install
downloadaur-2da04a4a1f74002deacb57df37220abe036f3142.tar.gz
Initial commit of 3.0.0-1
* Modified version of kalu, with --enable-status-notifier for KDE, and corresponding dependency on statusnotifier.
Diffstat (limited to 'kalu.install')
-rw-r--r--kalu.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/kalu.install b/kalu.install
new file mode 100644
index 000000000000..4e86fe6bce1f
--- /dev/null
+++ b/kalu.install
@@ -0,0 +1,14 @@
+post_install() {
+ /usr/bin/getent group kalu >/dev/null 2>&1 || usr/sbin/groupadd -g 214 kalu &>/dev/null
+ gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ if /usr/bin/getent group kalu >/dev/null 2>&1; then
+ /usr/sbin/groupdel kalu
+ fi
+}