Windows:
http://ftp.lstc.com/anonymous/outgoing/lsprepost/dev/ for 64bit OS
Linux:
http://ftp.lstc.com/anonymous/outgoing/lsprepost/dev/
Windows:
Double click the Setup file and follow instructions.
Linux:
1. Download the lsprepost-4.5-xxxxx.tgz file, xxxxx is the operating system name.
2. Unzip and untar the lsprepost4.5_xxxxx.tgz file using the following command: gunzip -c lsprepost-4.5-xxxxx.tgz | tar xvf -
3. A directory lsprepost4.5_xxxxx will be created, there are 3 files and 2 sub-directories in this distribution directory:README.txt: The instructions to install
lspp3: a script to run lsprepost 4.5
lsprepost: the executable of lsprepost 4.5
lib: subdirectory contains the dynamic runtime libraries
resource: subdirectory contains the help file and other resource files4. Modify the lspp3 script to set the two environment variables:LSPP_HELPDIR and LD_LIBRARY_PATH with properly path name,in the script, set variable DN to the directory name where the lsprepost 4.5 distribution is. e.g. DN="/home/user_name/lspp4.5_centos5".
#!/bin/bash
# modify the following line for your directory name
DN="/home/myname/lsprepost4.5_centos5"
export LSPP_HELPDIR=$DN/resource/Help_Document
export LD_LIBRARY_PATH=$DN/lib:$LD_LIBRARY_PATH$DN/lsprepost $*
5. Put file lspp3 in a directory that is in your default search path.