source: trunk/gui/apps/rappture @ 133

Last change on this file since 133 was 133, checked in by dkearney, 19 years ago

added environment variables for matlab, tcl_library and tk_library

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1#!/bin/sh
2# ----------------------------------------------------------------------
3#  RAPPTURE
4#
5#  This is the main script that most people use to invoke the
6#  Rappture GUI.  It sets environment variables so that the Rappture
7#  GUI driver will work properly for the current installation.
8#
9# ======================================================================
10#  AUTHOR:  Michael McLennan, Purdue University
11#  Copyright (c) 2004-2005  Purdue Research Foundation
12#
13#  See the file "license.terms" for information on usage and
14#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
15# ======================================================================
16#
17# If you install Rappture elsewhere, edit the line below:
18RAPPTURE_INSTALL_DIR=/opt/rappture
19
20# no need to edit the rest...
21export PATH=$RAPPTURE_INSTALL_DIR/bin:$PATH
22export MATLABPATH=$RAPPTURE_INSTALL_DIR/lib/matlab:$MATLABPATH
23export LD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$LD_LIBRARY_PATH
24export DYLD_LIBRARY_PATH=$RAPPTURE_INSTALL_DIR/lib:$DYLD_LIBRARY_PATH
25export TCL_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tcl8.4
26export TK_LIBRARY=$RAPPTURE_INSTALL_DIR/lib/tk8.4
27exec $RAPPTURE_INSTALL_DIR/bin/driver $*
Note: See TracBrowser for help on using the repository browser.