File: README

package info (click to toggle)
jacal 1b9-7
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,008 kB
  • ctags: 956
  • sloc: lisp: 5,856; makefile: 320; sh: 120
file content (61 lines) | stat: -rw-r--r-- 2,522 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
This directory contains the distribution of jacal-1b9.  Jacal is a
symbolic mathematics system written in the programming language Scheme.

	     http://swiss.csail.mit.edu/~jaffer/JACAL.html

File: jacal.info,  Node: Installation,  Next: Running Jacal,  Prev: Authors and Bibliography,  Up: Overview

1.2 Installation
================

The JACAL program is written in the Algorithmic Language "Scheme".  So
you must obtain and install a Scheme implementation in order to run it.
The installation procedures given here use the SCM Scheme
implementation.  If your system has a Scheme (or Guile) implementation
installed, then the `scm' steps are unnecessary.

  JACAL also requires the SLIB Portable Scheme library which is
available from `http://swiss.csail.mit.edu/~jaffer/SLIB'.

 -- System: i386 GNU/Linux with Redhat Package Manager (rpm)
          wget http://swiss.csail.mit.edu/ftpdir/scm/scm-5e5-1.i386.rpm
          wget http://swiss.csail.mit.edu/ftpdir/scm/slib-3b1-1.noarch.rpm
          wget http://swiss.csail.mit.edu/ftpdir/scm/jacal-1b9-1.noarch.rpm
          rpm -U scm-5e5-1.i386.rpm slib-3b1-1.noarch.rpm jacal-1b9-1.noarch.rpm
          rm scm-5e5-1.i386.rpm slib-3b1-1.noarch.rpm jacal-1b9-1.noarch.rpm

     The command `jacal' will start an interactive session.

 -- System: Unix
 -- System: GNU/Linux
          wget http://swiss.csail.mit.edu/ftpdir/scm/scm-5e5.zip
          wget http://swiss.csail.mit.edu/ftpdir/scm/slib-3b1.zip
          wget http://swiss.csail.mit.edu/ftpdir/scm/jacal-1b9.zip
          unzip -ao scm-5e5.zip
          unzip -ao slib-3b1.zip
          unzip -ao jacal-1b9.zip
          (cd slib; make install)
          (cd scm; make scm; make install)
          (cd jacal; make install)
          rm scm-5e5.zip slib-3b1.zip jacal-1b9.zip

     The command `jacal' will start an interactive session using ELK,
     Gambit, Guile, Larceny, MIT-Scheme, MzScheme, Scheme48, SCM, or
     SISC.  Type `jacal --help' for instructions.

 -- System: Apple
     `http://www.io.com/~cobblers/scm/' has downloads and utilities for
     installing SCM and SLIB on Macintosh computers.

 -- System: x86 Microsoft
     Download and run
     `http://swiss.csail.mit.edu/ftpdir/scm/SLIB-3b1-1.exe',
     `http://swiss.csail.mit.edu/ftpdir/scm/SCM-5e5-1.exe', and
     `http://swiss.csail.mit.edu/ftpdir/scm/JACAL-1b9-1.exe'.

Compiling Jacal
---------------

For Scheme implementations with compilers, it is worthwhile to compile
SLIB files, and the JACAL files `types.scm' and `poly.scm'.