#!/bin/sh
#
# this script echoes the location of classes of that package,
# which you'll probably integrate into your CLASSPATH 
# in order to make them accessible  
#
# the basename of this shell-script:
basename=`basename $0`
# this script's path relative to install_prefix
my_path=/bin
# leading part of this script's path is install_prefix
install_prefix=`echo $0 | awk '{pos=match($0, "'${my_path}/${basename}'$"); if (pos > 0) printf substr ($0, 1, pos-1)}'`

echo ${install_prefix}/share/lib/java/classes/argouml070.jar
