xsp.sh 425 B

123456789101112131415161718
  1. #!/bin/bash
  2. RETCODE=$(fw_exists ${IROOT}/xsp.installed)
  3. [ ! "$RETCODE" == 0 ] || { return 0; }
  4. fw_depends mono
  5. git clone git://github.com/mono/xsp
  6. cd xsp
  7. git checkout 8a31bc625727594d42f94173768bee5cf8afd0a4
  8. export PKG_CONFIG_PATH=${IROOT}/mono-3.6.0-install/lib/pkgconfig
  9. export PATH=${IROOT}/mono-3.6.0-install/bin:$PATH
  10. ./autogen.sh --prefix=${IROOT}/mono-3.6.0-install
  11. make
  12. make install
  13. touch ${IROOT}/xsp.installed