aboutsummaryrefslogtreecommitdiffstats
path: root/src/epiphany.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/epiphany.in')
-rw-r--r--src/epiphany.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/epiphany.in b/src/epiphany.in
new file mode 100644
index 000000000..fe0c28f5d
--- /dev/null
+++ b/src/epiphany.in
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+dist_bin=`dirname $0`
+
+if test -n "$MOZILLA_FIVE_HOME"; then
+ MOZILLA_HOME=$MOZILLA_FIVE_HOME
+elif [ -f @MOZILLA_HOME@/chrome/comm.jar ]; then
+ MOZILLA_HOME=@MOZILLA_HOME@
+else
+ echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory"
+ exit
+fi
+
+LD_LIBRARY_PATH=$MOZILLA_HOME:$LD_LIBRARY_PATH
+export LD_LIBRARY_PATH
+
+MOZILLA_FIVE_HOME=$MOZILLA_HOME
+export MOZILLA_FIVE_HOME
+
+exec "$dist_bin/epiphany-bin" "$@"