xsp.sh 391 B

123456789101112131415161718192021222324
  1. #!/bin/bash
  2. fw_depends mono
  3. RETCODE=$(fw_exists ${IROOT}/xsp.installed)
  4. [ ! "$RETCODE" == 0 ] || { \
  5. source $IROOT/xsp.installed
  6. return 0; }
  7. # get
  8. git clone git://github.com/mono/xsp
  9. cd xsp
  10. git checkout e272a2c006211b6b03be2ef5bbb9e3f8fefd0768
  11. # build
  12. ./autogen.sh --prefix=$MONO_HOME --disable-docs
  13. make
  14. sudo make install
  15. # cleanup
  16. cd ..
  17. rm -rf xsp
  18. echo "" > $IROOT/xsp.installed