summaryrefslogtreecommitdiffstats
path: root/system/colord/doinst.sh
diff options
context:
space:
mode:
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