view octave-wrapper.in @ 4253:32a7bea19bb1

msys-gzip: add .bat wrappers to shellscripts * tools/gen-bat-wrapper: new file * dist-files.mk: add gen-bat-wrapper * src/msys-gzip.mk: add find of shell script and create .bat file
author John D
date Mon, 21 Nov 2016 17:11:21 -0500
parents d7758bf3793e
children 788dc298ec00
line wrap: on
line source

#! /bin/sh

OCTAVE_HOME=""

if [ -z "$OCTAVE_HOME" ]; then
  echo "you must edit $0 to set OCTAVE_HOME" 1>&2
  exit 1;
fi

PATH="$OCTAVE_HOME/bin/:$PATH"

LD_LIBRARY_PATH="$OCTAVE_HOME/lib:$OCTAVE_HOME/lib64:$OCTAVE_HOME/lib/octave/@OCTAVE_VERSION@"

TERMINFO="$OCTAVE_HOME/share/terminfo"

TERM="vt100"

FONTCONFIG_PATH="$OCTAVE_HOME/etc/fonts"

GNUPLOT_DRIVER_DIR="$OCTAVE_HOME/libexec/gnuplot/@GNUPLOT_MAJOR_MINOR_VERSION@"
GNUPLOT_SHARE_DIR="$OCTAVE_HOME/share/gnuplot/@GNUPLOT_MAJOR_MINOR_VERSION@"
GNUPLOT_PS_DIR="$GNUPLOT_SHARE_DIR/PostScript"

export OCTAVE_HOME
export PATH
export LD_LIBRARY_PATH
export TERMINFO
export TERM
export FONTCONFIG_PATH
export GNUPLOT_DRIVER_DIR
export GNUPLOT_SHARE_DIR
export GNUPLOT_PS_DIR

exec "$OCTAVE_HOME/bin/@PROGRAM_NAME@-@OCTAVE_VERSION@.real" "$@"