43 lines
612 B
Bash
Executable File
43 lines
612 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
npm config set unsafe-perm true
|
|
PERL_MM_USE_DEFAULT=1 cpan App::cpanminus
|
|
rm -rf /tmp/cpan_install_*.txt
|
|
|
|
# Befunge
|
|
npm install -g befunge93 prompt-sync
|
|
|
|
# ClojureScript
|
|
npm install -g lumo-cljs
|
|
|
|
# CoffeeScript
|
|
npm install -g coffeescript
|
|
|
|
# Elm
|
|
npm install -g @kachkaev/run-elm
|
|
|
|
# Perl
|
|
cpanm -n Devel::REPL
|
|
|
|
# ReasonML
|
|
npm install -g bs-platform
|
|
|
|
# Shakespeare
|
|
pip3 install shakespearelang
|
|
|
|
# TypeScript
|
|
npm install -g ts-node typescript
|
|
|
|
# Whitespace
|
|
pip3 install whitespace
|
|
|
|
# Wolfram Language
|
|
python3.7 -m pip install mathics
|
|
|
|
rm -f /tmp/core-js-banners
|
|
|
|
rm "$0"
|