Created
February 2, 2015 07:47
-
-
Save tokuhirom/f9e97c6369c3dc98cb29 to your computer and use it in GitHub Desktop.
rakudo-build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -x | |
set -e | |
WORK=$HOME/.rakudo-build/ | |
PREFIX=$HOME/perl6 | |
mkdir -p $PREFIX | |
mkdir -p $WORK | |
rm -rf $WORK/rakudo | |
git clone https://github.com/rakudo/rakudo.git $WORK/rakudo | |
cd $WORK/rakudo | |
perl Configure.pl --prefix=$PREFIX --backends=moar --gen-moar --gen-nqp | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment