diff debian/madbuilder.postinst @ 386:12464f1138ae

[MadBuilder] Install template and configuration to mozpluggerrc
author Ben Lau <xbenlau@gmail.com>
date Fri, 10 Apr 2009 03:14:49 +0800
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/madbuilder.postinst	Fri Apr 10 03:14:49 2009 +0800
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+HEADER="#MadBuilder Configuration#"
+FOOTER="#End of MadBuilder Configuration#"
+RC=/etc/mozpluggerrc
+
+CONTAIN=`grep "$HEADER" $RC`
+
+if [  -z "$CONTAIN" ]
+then
+cat <<EOF >> $RC
+
+$HEADER
+application/x-mbsvg:mbsvg: MadButterfly SVG
+        swallow(Inkscape) : /usr/share/madbutterfly/inkscape/usr/bin/helper_mb.py "\$file"
+application/x-h:h: MadButterfly SVG h program
+	swallow(gedit) : gedit "\$file"
+$FOOTER
+
+EOF
+echo Configuration installed to $RC
+fi