build-simulavr 788 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/bin/bash
  2. # http://reprap.org/wiki/SimulAVR
  3. # (because I can't get the official SimulAVR at savannah to build a working executable)
  4. # Stop on errors
  5. set -e
  6. source avr-file-names
  7. TIME_START=$(date +%s)
  8. echo "Downloading sources..."
  9. wget -c http://wareck.free.fr/cross_compilation/avr_toolchain/simulavr.tar.xz
  10. tar xfJ pack/simulavr.tar.xz
  11. # Make simulavr
  12. echo "Making simulavr in $NAME_SIMULAVR..."
  13. cd $NAME_SIMULAVR/
  14. git checkout traumflug
  15. cp ../pack/simulavr_patch1.patch .
  16. cp ../pack/simulavr_patch2.patch .
  17. patch -p1 < simulavr_patch1.patch
  18. patch -p1 < simulavr_patch2.patch
  19. ./bootstrap
  20. ./configure --enable-tcl --prefix=$PREFIX
  21. make
  22. sudo make install-strip
  23. cd ..
  24. TIME_END=$(date +%s)
  25. TIME_RUN=$(($TIME_END - $TIME_START))
  26. echo ""
  27. echo "Done in $TIME_RUN seconds"
  28. exit 0