#
#   Modify this file for your package
# 
#   Variables:
#   ----------
#
#   PACKNAME  = package name. Used to create tar file name
#   PLATFORMS = list of available platforms for the package
#   DIRLIST   = file structure to be included in the package. 
#               relative to main package directory ( this one ).
#   EXCLUDES  = directories or files not to be included in the distribution
#
#   Functions:
#   ----------
#   SetPackageVars()  - Set package variables
#   CallExecutable()  - Create the scripts in "~specadm/bin"
#   SpecialScript()   - If special actions are required during install
#
PACKNAME="specfile"
PLATFORMS="sun4 solaris hp10 hp700 linux irix"
DIR_LIST=$PACKNAME
EXCLUDES="RCS OLD"
APP_HOME=/users/c/icntl/master/$PACKNAME

#
# Functions called during installation from bliss_pkg
#
SetPackageVars() {
     #
     # Where should the package be installed. Always relative to ~specadm 
     #
     PACKAGEROOT=local
     #
     # Directory where the executable should be.
     #
     MIMIC_DIRS="$HOME/$PACKAGEROOT/${APPNAME}/bin/${HOSTTYPE}"
}

#
# Function called from bliss_update
#    it will create the script in ~specadm/bin from which the 
#    program will be executed
# first parameter: directory where the executable is
#
CallExecutable() {
echo "
export HT 
exec $1/\`basename \$0\` \$*" ;
}

#
# Script for special action during installation
# 
SpecialScript() {
  # echo "** No special script for specfile called";
  return
}

