- #!/bin/bash
- RETCODE=$(fw_exists ${IROOT}/pypy.installed)
- [ ! "$RETCODE" == 0 ] || { return 0; }
- fw_get https://bitbucket.org/pypy/pypy/downloads/pypy-2.4.0-linux64.tar.bz2 -O pypy-2.4.0-linux64.tar.bz2
- fw_untar pypy-2.4.0-linux64.tar.bz2
- ln -sf pypy-2.4.0-linux64 pypy
- if [ ! -f "get-pip.py" ]; then
- fw_get https://bootstrap.pypa.io/get-pip.py -O get-pip.py
- fi
- ${IROOT}/pypy/bin/pypy get-pip.py
- touch ${IROOT}/pypy.installed
|