This repository was archived by the owner on May 4, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name = " forth"
22entrypoint = " main.fth"
33extensions = [
4- " fth"
4+ " fth" ,
5+ " 4th"
56]
7+
68packages = [
7- " gforth"
9+ " libtool-bin" ,
10+ " libffi-dev" ,
11+ " automake" ,
12+ " m4" ,
13+ " gforth" , " gforth-lib" , " gforth-common"
14+ ]
15+
16+ setup = [
17+ " pushd /tmp" ,
18+ " wget -O gforth-0.7.9.tar.xz http://www.complang.tuwien.ac.at/forth/gforth/Snapshots/0.7.9_20200716/gforth-0.7.9_20200716.tar.xz" ,
19+ " tar -Jxf gforth-0.7.9.tar.xz" ,
20+ " rm gforth-0.7.9.tar.xz" ,
21+ " mv gforth-0.7.9_* gforth-0.7.9" ,
22+ " cd gforth-0.7.9" ,
23+
24+ " cd unix" ,
25+ " [ -e stat-fsi.c ] || wget -O stat-fsi.c https://git.savannah.gnu.org/cgit/gforth.git/plain/unix/stat-fsi.c" ,
26+ " gcc stat-fsi.c -o stat-fsi" ,
27+ " ./stat-fsi > stat.fs" ,
28+ " cd .." ,
29+
30+ " ./autogen.sh" ,
31+ " ./configure" ,
32+ " make" ,
33+ " make more" ,
34+ " make install" ,
35+ " cd .." ,
36+ " rm -rf /tmp/gforth-0.7.9" ,
37+ " popd"
838]
9- setup = [ ]
1039
1140[run ]
1241command = [
You can’t perform that action at this time.
0 commit comments