Install Rakudo as a system package.
This is simple installer of Rakudo Perl6.
Platforms supported:
- CentOS
- Ubuntu
- Debian
- Fedora
- Alpine
- Archlinux ( limited support )
note: for archlinux zef will not be installed because the installer uses a user binary repo without zef package.
$ sparrow plg install rakudo-install
$ sparrow plg run rakudo-install --param search=ubuntu
Be aware that defaults might point to pretty old versions:
$ sparrow plg run rakudo-install
This is preferable method:
$ sparrow plg run rakudo-install \
--param url=https://github.com/nxadm/rakudo-pkg/releases/download/v2017.11/rakudo-pkg-Debian8.9_2017.11-01_amd64.deb
You can use Sparrowdo to install Rakudo:
$ cat sparrowfile
task-run 'install Rakudo', 'rakudo-install', %(
url => 'https://github.com/nxadm/rakudo-pkg/releases/download/v2017.11/rakudo-pkg-Debian8.9_2017.11-01_amd64.deb'
);
Alexey Melezhik