-
-
Save zoffixznet/57178a9095d844bc270690e40859b1ab to your computer and use it in GitHub Desktop.
This file contains 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
git clone https://github.com/rakudo/rakudo/ ~/rakudo | |
echo 'export PATH="$HOME/rakudo/install/bin:$HOME/rakudo/install/share/perl6/site/bin:$PATH"' >> ~/.bashrc | |
echo 'alias update-perl6='\'' | |
cd ~/rakudo && git checkout master && git pull && | |
git checkout $(git describe --abbrev=0 --tags) && | |
perl Configure.pl --gen-moar --gen-nqp --backends=moar && | |
make && make install'\''' >> ~/.bashrc | |
source ~/.bashrc | |
update-perl6 | |
cd $(mktemp -d) | |
git clone https://github.com/ugexe/zef | |
cd zef | |
perl6 -I. bin/zef install . | |
perl6 -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment