- avoid linking to devel/nspr if installed - prepare for mozilla versioning (adjust MOZDIR as needed) With help from maintainer Igor Boehm okay pval@
21 lines
393 B
Plaintext
Executable File
21 lines
393 B
Plaintext
Executable File
:
|
|
|
|
MOZILLA_HOME=%%LOCALBASE%%/%%MOZDIR%%
|
|
|
|
if [ -z "$MOZ_PLUGIN_PATH" ]; then
|
|
MOZ_PLUGIN_PATH=~/.mozilla/plugins/
|
|
export MOZ_PLUGIN_PATH
|
|
fi
|
|
|
|
if [ -n "$LD_LIBRARY_PATH" ]; then
|
|
LD_LIBRARY_PATH=$MOZILLA_HOME:$LD_LIBRARY_PATH
|
|
else
|
|
LD_LIBRARY_PATH=$MOZILLA_HOME
|
|
fi
|
|
export LD_LIBRARY_PATH
|
|
|
|
MOZILLA_FIVE_HOME=$MOZILLA_HOME
|
|
export MOZILLA_FIVE_HOME
|
|
|
|
exec "%%LOCALBASE%%/bin/epiphany-bin" "$@"
|