Compare commits

..

No commits in common. "567809ed42e39590a4a504ce3887b48529f81787" and "7837f1c7c0c645edc46831eb887815397e2dd740" have entirely different histories.

16 changed files with 1 additions and 117 deletions

View file

@ -1,25 +0,0 @@
#!/bin/bash
source ../../erlang/23.0.0/build.sh
export PATH=$PWD/bin:$PATH
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
curl -L "https://github.com/elixir-lang/elixir/archive/v1.11.3.tar.gz" -o elixir.tar.gz
tar xzf elixir.tar.gz --strip-components=1
rm elixir.tar.gz
./configure --prefix "$PREFIX"
make -j$(nproc)
cd ..
cp -r build/bin .
cp -r build/lib .
rm -rf build

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH=$PWD/bin:$PATH

View file

@ -1,6 +0,0 @@
{
"language": "elixir",
"version": "1.11.3",
"author": "Dan Vargas <danvargas46@gmail.com>",
"aliases": ["elixir", "exs"]
}

View file

@ -1,4 +0,0 @@
#!/bin/bash
# Put instructions to run the runtime
elixir "$@"

View file

@ -1 +0,0 @@
IO.puts("OK")

View file

@ -1,21 +0,0 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
curl "http://erlang.org/download/otp_src_23.0.tar.gz" -o erlang.tar.gz
tar xzf erlang.tar.gz --strip-components=1
rm erlang.tar.gz
export ERL_TOP=$(pwd)
./configure --prefix "$PREFIX"
make -j$(nproc)
make install -j$(nproc)
cd ..
rm -rf build

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH=$PWD/bin:$PATH

View file

@ -1,6 +0,0 @@
{
"language": "erlang",
"version": "23.0.0",
"author": "Dan Vargas <danvargas46@gmail.com>",
"aliases": ["erlang", "erl", "escript"]
}

View file

@ -1,4 +0,0 @@
#!/bin/bash
# Put instructions to run the runtime
escript "$@"

View file

@ -1,3 +0,0 @@
main(_) ->
io:format("OK~n").

View file

@ -1,23 +0,0 @@
#!/bin/bash
source ../../elixir/1.11.3/build.sh
export PATH=$PWD/bin:$PATH
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
git clone 'https://github.com/Adriandmen/05AB1E.git' .
mix local.hex --force
mix local.rebar --force
mix deps.get --force
MIX_ENV=prod mix escript.build --force
cd ..
cp -r build/* bin
rm -rf build

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH=$PWD/bin:$PATH

View file

@ -1,6 +0,0 @@
{
"language": "osabie",
"version": "1.0.1",
"author": "Dan Vargas <danvargas46@gmail.com>",
"aliases": ["osabie", "05AB1E", "usable"]
}

View file

@ -1,4 +0,0 @@
#!/bin/bash
# Put instructions to run the runtime
osabie "$@"

View file

@ -1 +0,0 @@
"OK

View file

@ -1,3 +1,3 @@
#!/bin/bash
ruby "$@"
ruby $*