#!/bin/sh

## MapStudio Start Script
## V. 0.5, by B. Linowski, July 1999
##

## Change MAPSTUDIOPATH to the full pathname of the MapStudio Jar-file!
##
MAPSTUDIOPATH=/home/user/java/MapStudio-0.5.3.jar

## Change DEFCLASSPATH to the paths and Zip/Jar files of your JDK/JRE 
## and Swing installation
##
DEFCLASSPATH=/usr/lib/java/lib/classes.zip:/usr/lib/swing-1.1/swingall.jar



if test -n "${CLASSPATH}"; then
	HCP=${CLASSPATH}:${MAPSTUDIOPATH}
else
	HCP=${DEFCLASSPATH}:${MAPSTUDIOPATH}
fi

exec java -classpath ${HCP} MapStudio $*

