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