pkg(osabie-1.0.1): Added osabie 1.0.1
This commit is contained in:
parent
d64a2667dc
commit
9b305c7995
|
@ -0,0 +1,23 @@
|
|||
#!/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
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/bin:$PATH
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"language": "osabie",
|
||||
"version": "1.0.1",
|
||||
"author": "Dan Vargas <danvargas46@gmail.com>",
|
||||
"aliases": ["osabie", "05AB1E", "usable"]
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Put instructions to run the runtime
|
||||
osabie "$@"
|
|
@ -0,0 +1 @@
|
|||
"OK
|
Loading…
Reference in New Issue