Compare commits
No commits in common. "89a6f81123c98d6b905da4c10ae640718b2dc01b" and "7d90cddf2795e4872b4569a423d277eba962a268" have entirely different histories.
89a6f81123
...
7d90cddf27
|
@ -1,15 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# the forter interpreter requries ruby
|
|
||||||
source ../../ruby/3.0.1/build.sh
|
|
||||||
|
|
||||||
mkdir -p build
|
|
||||||
|
|
||||||
git clone -q "https://github.com/judofyr/forter" build/forter
|
|
||||||
cd build/forter
|
|
||||||
|
|
||||||
mv bin/* ../../bin/
|
|
||||||
mv lib/* ../../lib/
|
|
||||||
|
|
||||||
cd ../../
|
|
||||||
rm -rf build
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# interpreter location
|
|
||||||
export PATH=$PWD/bin:$PATH
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"language": "forte",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"aliases": ["forter"]
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
forter "$@"
|
|
|
@ -1,2 +0,0 @@
|
||||||
1 PRINT "OK"
|
|
||||||
2 END
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
curl -L "https://sourceforge.net/projects/fbc/files/FreeBASIC-1.08.0/Binaries-Linux/FreeBASIC-1.08.0-linux-x86_64.tar.gz/download" -o freebasic.tar.gz
|
|
||||||
tar xf freebasic.tar.gz --strip-components=1
|
|
||||||
rm freebasic.tar.gz
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Compile bas files
|
|
||||||
fbc -lang qb -b "$@" -x out
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Path to fbc compiler
|
|
||||||
export PATH=$PWD/bin:$PATH
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"language": "freebasic",
|
|
||||||
"version": "1.8.0",
|
|
||||||
"aliases": ["bas", "fbc", "basic", "qbasic", "quickbasic"]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Run output file from compile with arguments
|
|
||||||
shift
|
|
||||||
./out "$@"
|
|
|
@ -1 +0,0 @@
|
||||||
PRINT "OK"
|
|
Loading…
Reference in New Issue