mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-27 07:26:31 +02:00
edited raku implementation
put it in version folder 6.d and removed the v from version in the json file
This commit is contained in:
parent
ccb109a111
commit
4c22b1689c
5 changed files with 1 additions and 1 deletions
10
packages/raku/6.d/build.sh
Normal file
10
packages/raku/6.d/build.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
mkdir -p bin
|
||||
cd bin/
|
||||
|
||||
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
|
||||
|
||||
cd ../
|
4
packages/raku/6.d/environment
Normal file
4
packages/raku/6.d/environment
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Path to raku binary
|
||||
export PATH=$PWD/bin:$PATH
|
5
packages/raku/6.d/metadata.json
Normal file
5
packages/raku/6.d/metadata.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"language": "raku",
|
||||
"version": "6.d",
|
||||
"aliases": ["raku", "rakudo", "perl6", "p6", "pl6"]
|
||||
}
|
3
packages/raku/6.d/run
Normal file
3
packages/raku/6.d/run
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
raku "$@"
|
1
packages/raku/6.d/test.raku
Normal file
1
packages/raku/6.d/test.raku
Normal file
|
@ -0,0 +1 @@
|
|||
say "OK"
|
Loading…
Add table
Add a link
Reference in a new issue