#!/bin/sh
#
# getInstallRoot - Get the root of the install area
#
# The install root is defined to be the directory in which is contained
# a {bin,lib,man} directory. These are used in the following manner.
#
# bin - the binaries are installed here
#
# lib - an app subdirectoy is created to hold app related run time files
#
# man - has subdirs in which man pages are installed.
#
# This varies from system to system, site to site ... Common
# locations are /usr/local  or  /usr/openwin  or /usr/X11R6 ...
#
# Note this is not the same as a package install area, such as /opt/$app_name
# or /home/$app_name. If such areas are used they are defined by 
# getPackageRoot. It is possible and probable to have both, i.e. the files
# are initially installed in the package area then either copied or
# symbolically linked to other areas of the files system, perhaps 
# specified by the getInstallRoot or even overridden again to be scattered
# installed. See getInstallBin, getInstallMan, getInstallLib


# We set a default of /usr/local, which may very well be overridden

echo "/usr/local"
