Compare commits

...

6 Commits

Author SHA1 Message Date
Victor Frazao 4e26a48a6e pkg(julia-1.5.4): Add alias "jl" 2021-03-15 08:15:19 +13:00
Victor Frazao 172cbd92a1 pkg(julia-1.5.4): Added julia 1.5.4 2021-03-15 08:15:19 +13:00
Victor Frazao 4dade61599 pkg(go-1.16.2): Fix build.sh to follow redirects 2021-03-15 08:14:17 +13:00
Thomas eac95d8c6b pkg(go-1.16.2): use $@ 2021-03-15 08:14:17 +13:00
Thomas 2259606409 Update build.sh 2021-03-15 08:14:17 +13:00
Victor Frazao cbb71341e3 pkg(go-1.16.2): Added go 1.16.2 2021-03-15 08:14:17 +13:00
10 changed files with 41 additions and 0 deletions

4
packages/go/1.16.2/build.sh vendored Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
curl -LO https://golang.org/dl/go1.16.2.linux-amd64.tar.gz
tar -xzf go1.16.2.linux-amd64.tar.gz
rm go1.16.2.linux-amd64.tar.gz

2
packages/go/1.16.2/environment vendored Normal file
View File

@ -0,0 +1,2 @@
export PATH=$PWD/go/bin:$PATH
export GOPATH=$PWD/gopath

6
packages/go/1.16.2/metadata.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"language": "go",
"version": "1.16.2",
"author": "Victor Frazao <luiz_victor_frazao@hotmail.com>",
"aliases": ["go", "golang"]
}

3
packages/go/1.16.2/run vendored Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
GOCACHE=$PWD go run "$@"

7
packages/go/1.16.2/test.go vendored Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("OK")
}

5
packages/julia/1.5.4/build.sh vendored Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
curl -OL https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.4-linux-x86_64.tar.gz
tar zxvf julia-1.5.4-linux-x86_64.tar.gz
rm julia-1.5.4-linux-x86_64.tar.gz

3
packages/julia/1.5.4/environment vendored Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
export PATH=$PWD/julia-1.5.4/bin:$PATH

6
packages/julia/1.5.4/metadata.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"language": "julia",
"version": "1.5.4",
"aliases": ["jl"],
"author": "Victor Frazao <luiz_victor_frazao@hotmail.com>"
}

4
packages/julia/1.5.4/run vendored Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put instructions to run the runtime
julia --startup-file=no --history-file=no "$@"

1
packages/julia/1.5.4/test.jl vendored Normal file
View File

@ -0,0 +1 @@
println("OK")