mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 04:56:30 +02:00
Adding Raku (#281)
* Adding Raku probably doesn't work lol tried copying the other ones someone could probably implement it using the build instructions from this https://rakudo.org/downloads/rakudo/source * Update test.raku * edited raku implementation put it in version folder 6.d and removed the v from version in the json file * edited raku version changed the same stuff as last time but with different stuff * raku edit build.sh remove some unnecessary lines from the file * raku edit version editing version name again lol
This commit is contained in:
parent
c0b218f477
commit
ba9503d9f8
5 changed files with 18 additions and 0 deletions
5
packages/raku/6.100.0/build.sh
vendored
Normal file
5
packages/raku/6.100.0/build.sh
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
curl -L "https://rakudo.org/dl/rakudo/rakudo-moar-2021.05-01-linux-x86_64-gcc.tar.gz" -o raku.tar.xz
|
||||
tar xf raku.tar.xz --strip-components=1
|
||||
rm raku.tar.xz
|
4
packages/raku/6.100.0/environment
vendored
Normal file
4
packages/raku/6.100.0/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Path to raku binary
|
||||
export PATH=$PWD/bin:$PATH
|
5
packages/raku/6.100.0/metadata.json
vendored
Normal file
5
packages/raku/6.100.0/metadata.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"language": "raku",
|
||||
"version": "6.100.0",
|
||||
"aliases": ["raku", "rakudo", "perl6", "p6", "pl6"]
|
||||
}
|
3
packages/raku/6.100.0/run
vendored
Normal file
3
packages/raku/6.100.0/run
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
raku "$@"
|
1
packages/raku/6.100.0/test.raku
vendored
Normal file
1
packages/raku/6.100.0/test.raku
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
say "OK"
|
Loading…
Add table
Add a link
Reference in a new issue