summaryrefslogtreecommitdiffstats
path: root/system/colord/doinst.sh
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-01-11 00:36:44 -0600
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-01-18 09:09:01 +0700
commit148dbbde69cb2b1def47f10b4b22d05c2dba810e (patch)
tree98abd967ef2e323f4398b64c83a334c2879415f4 /system/colord/doinst.sh
parent484f4befb61c53374b469caee87b47811e9bc2ed (diff)
downloadslackbuilds-148dbbde69cb2b1def47f10b4b22d05c2dba810e.tar.gz
slackbuilds-148dbbde69cb2b1def47f10b4b22d05c2dba810e.tar.xz
system/colord: Added (Color Profile System Service)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system/colord/doinst.sh')
-rw-r--r--system/colord/doinst.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/system/colord/doinst.sh b/system/colord/doinst.sh
new file mode 100644
index 0000000000..a679353395
--- /dev/null
+++ b/system/colord/doinst.sh
@@ -0,0 +1,17 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ rm $NEW
+ fi
+}
+
+config etc/dbus-1/system.d/org.freedesktop.ColorManager.conf.new
+
+if [ -e usr/share/glib-2.0/schemas ]; then
+ if [ -x /usr/bin/glib-compile-schemas ]; then
+ /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
+ fi
+fi