isl.build 262 B

123456789101112131415161718192021
  1. cd $tmpdir
  2. # Download sources
  3. if [ ! -f "$isl" ]; then
  4. echo "Downloading ISL sources..."
  5. wget $islmirror/$isl
  6. tar -xf $isl
  7. fi
  8. # Configure and compile
  9. cd $islsrcdir
  10. ./configure --prefix=$freondir
  11. make -j$corecount
  12. make install
  13. cd ..