################################################################################ # Last Update Updated By Reason for Change #=============================================================================== # 10-Mar-06 Rob Quick/IU Pacman 3 Syntax # 12-Mar-06 leigh added configure arg --disable-tcl ################################################################################ version ('0.4.1') description ('MIS-CI') url ('http://osg.ivdgl.org/') shell ('echo "Compiling and installing MIS-CI..."') shell ('mkdir MIS-CI') shell ('cd MIS-CI') downloadUntarzip ('http://hep.uchicago.edu/ivdgl/tarballs/sqlite-3.0.8.tar.gz', 'SQLITE_SOURCE') cd ('$SQLITE_SOURCE') #shell ('./configure --disable-tcl --prefix=$VDT_LOCATION/MIS-CI/share/sqlite') shell ('./configure --prefix=$VDT_LOCATION/MIS-CI/share/sqlite') shell ('make') shell ('make install') cd () shell ('rm -r $SQLITE_SOURCE') downloadUntarzip('http://hep.uchicago.edu/ivdgl/tarballs/misci-0.4.1.tar.gz', 'MISCI_SOURCE') cd ('$MISCI_SOURCE') shell ('CFLAGS=-I$VDT_LOCATION/MIS-CI/sqlite/include/ CPPFLAGS=-I$VDT_LOCATION/MIS-CI/sqlite/include/ LDFLAGS=-L$VDT_LOCATION/MIS-CI/sqlite/lib/ ./configure --prefix=$VDT_LOCATION/MIS-CI') shell ('make') shell ('make install') shell ('cp ./configure-misci.sh $VDT_LOCATION/MIS-CI') shell ('cp ./uninstall-misci.sh $VDT_LOCATION/MIS-CI') shell ('chmod +x $VDT_LOCATION/MIS-CI/configure-misci.sh') shell ('chmod +x $VDT_LOCATION/MIS-CI/uninstall-misci.sh') shell ('cp ./README $VDT_LOCATION/MIS-CI') shell ('cp ./INSTALL $VDT_LOCATION/MIS-CI') cd () shell ('rm -r $MISCI_SOURCE') setenv ('MISCI_LOCATION', '$VDT_LOCATION')