mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 04:56:30 +02:00
pkg(racket-8.3.0): added racket 8.3.0
This commit is contained in:
parent
c385c73bc4
commit
132a835b0b
6 changed files with 28 additions and 1 deletions
10
packages/racket/8.3.0/build.sh
vendored
Normal file
10
packages/racket/8.3.0/build.sh
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# curl racket 8.3 linux installation shell file
|
||||
curl -L 'https://download.racket-lang.org/installers/8.3/racket-8.3-x86_64-linux-cs.sh' -o racket.sh
|
||||
|
||||
# provide settings "no" "4" and "<CR>" to racket.sh
|
||||
echo "no
|
||||
4
|
||||
" | sh racket.sh
|
||||
|
5
packages/racket/8.3.0/environment
vendored
Normal file
5
packages/racket/8.3.0/environment
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Path to racket binary
|
||||
export PATH=$PWD/bin:$PATH
|
||||
export RACKET_PATH=$PWD/racket
|
5
packages/racket/8.3.0/metadata.json
vendored
Normal file
5
packages/racket/8.3.0/metadata.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"language": "racket",
|
||||
"version": "8.3.0",
|
||||
"aliases": ["rkt"]
|
||||
}
|
3
packages/racket/8.3.0/run
vendored
Normal file
3
packages/racket/8.3.0/run
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
"$RACKET_PATH"/bin/racket "$@"
|
3
packages/racket/8.3.0/test.rkt
vendored
Normal file
3
packages/racket/8.3.0/test.rkt
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
#lang racket
|
||||
|
||||
(display "OK")
|
Loading…
Add table
Add a link
Reference in a new issue