File:  [LON-CAPA] / loncom / homework / caparesponse / commands
Revision 1.10: download - view: text, annotated - select for diffs
Wed Jan 17 18:01:31 2001 UTC (23 years, 6 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
inserting logic to make sure that swig is available if we are on a RedHat
system -Scott

    1: CAPADIR=../../../CAPA
    2: 
    3: if test -f /etc/redhat-release
    4: then
    5: 	if rpm -q swig
    6: 	then
    7: 		echo "Swig found.  Assuming it works..."
    8: 	else
    9: 		echo "ERROR ERROR: Swig must exist but doesn't!!!"
   10: 		echo "To get swig, go to"
   11: 		echo "http://install.lon-capa.org/3.1/SupplementalRPMS"
   12: 		echo "Install this RPM, swig-1.1p5-3.i386.rpm"
   13: 		exit 1
   14: 	fi
   15: 	if test -e /usr/include/asm
   16: 	then
   17: 		echo ""
   18: 	else
   19: 		ln -s /usr/src/linux/include/asm /usr/include/asm
   20: 	fi
   21: 	if test -e /usr/include/linux
   22: 	then
   23: 		echo ""
   24: 	else
   25: 		ln -s /usr/src/linux/include/linux /usr/include/linux
   26: 	fi
   27: fi
   28: make -f Makefile clean
   29: mkdir capaFunctions
   30: path=`pwd`
   31: cd $CAPADIR/pProj
   32: make ARCH=LONCAPA libcapa
   33: cd $path
   34: cp $CAPADIR/pProj/LONCAPA/*.o capaFunctions
   35: swig -perl5 capa.i 
   36: cp Makefile.PL Makefile.pl
   37: perl Makefile.PL 
   38: make -f Makefile 
   39: cp blib/arch/auto/capa/capa.so . 
   40: perl capa.pm     

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>