#!/usr/bin/perl
#
# $Header: //sapdb/V76/c_00/b_34/sys/src/install/perl/packages/lcsim/instlcsim#1 $
# $DateTime: 2006/09/04 17:37:38 $
# $Change: 134683 $
#
# Desc:

import SAPDB::Install::StdIO;
import SAPDB::Install::System;
import SAPDB::Install::Registry;
import SAPDB::Install::Tools;
import SAPDB::Install::SetUser;
import SAPDB::Install::Cwd;

$path{'name'} = 'lc simulator path';

if($^O=~/mswin/i){
	$path{'default'} = getSysProgPath().'/sapdb/depend';
}
else{
	$path{'default'} = '/opt/sapdb/depend';
}

$path{'mode'}=0775;
$path{'opt'}='lc_sim_path=s';
$path{'list'} = 'lcsim.lst';
$path{'update'}=0;



unless($SAPDB::Install::StartInstall::opt_INSTANCE){ # these options makes only sense if it is the first sapdb installation
	$usage= " [-lc_sim_path <lc simulator path>]";
	$usage_desc = "\t-lc_sim_path <lc simulator path>\tdirectory for lc simulator\n";
}

@paths = (\%path);
$main_path=\%path;
$skip=0;
@opts=();



sub preinstall{
	return 1;
}
 

sub postprepare{
	 return 1;
}


sub postinstall{
	 return 1;
}


sub register{
	 return 1;
}


sub unregister{
	 return 1;
}


sub preuninstall{
	 return 1;
}


sub postuninstall{
	 return 1;
}


sub framestop{
	 return 1;
}


1;
                                                                                                         

