#!/bin/sh # # pstoedit # # # cd to the source directory tree for pstoedit # then.... cd config INSTALL=`pwd`/install-sh ./configure --prefix=/usr/local --libdir=/usr/local/lib/pstoedit \ --mandir=/usr/local/man $CONF if [ $? != 0 ] then exit 1 fi cd ../src make if [ $? != 0 ] then exit 1 fi make install if [ $? != 0 ] then exit 1 fi # copy HTML manual to where you want it # cp ../doc/pstoedit.htm $WEBMANDIR/pstoedit/pstoedit.html