blob: fa3498eb69bd3440eed40c1ecfabf813d242fa2d (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
Grammatical Framework Download and Installation
==Latest developer code==
[GF darcs repository ../doc/darcs.html]
==Latest release==
- GF 3.0 beta3 MacOS X binary (Intel Mac with MacOS X Leopard)
[GF-3.0-beta2-i386-apple-leopard.tgz]
- [GF 3.0 beta2 Windows package gf-3.0-beta2.zip] (includes libraries)
- [GF 3.0 beta2 sources GF-3.0-beta2.tgz] (both system and library)
- [GF libraries v 1.4 gf-lib-1.4.tgz] (compiled resource grammar libraries)
==Previous release==
- [GF 3.0 beta2 Linux binary package GF-3.0-beta2-i686-pc-linux-gnu.tgz] (Intel, Ubuntu)
- GF 3.0 beta2 MacOS X binary package:
[Leopard GF-3.0-beta2-i386-apple-darwin9.4.0.tgz] (Intel Mac with MacOS X Leopard)
[Tiger GF-3.0-beta2-i386-apple-darwin8.11.1.tgz] (Intel Mac with MacOS X Tiger)
- [GF 3.0 beta2 Windows package gf-3.0-beta2.zip] (includes libraries)
- [GF 3.0 beta2 sources GF-3.0-beta2.tgz] (both system and library)
- [GF libraries v 1.4 gf-lib-1.4.tgz] (compiled resource grammar libraries)
==Installation instructions==
The Windows package is installed by just unpacking it anywhere. It finds the libraries
relative to the ``.exe`` file.
To install a binary package for Linux and Mac OS X:
+ uncompress the package by ``tar -xfz``
+ ``cd`` to the created directory
+ ``./configure``
+ ``make install``
The Mac OS X binary (Intel) requires Readline from
[Mac Ports http://www.macports.org/]. To install, see above item.
To compile and install from source:
```
tar xvfz gf-3.0beta.tgz
cd GF/src
autoconf
./configure
make
make install
```
To install the libraries (if done separately), unpack them in the place to which your
``GF_LIB_PATH`` points.
```
cd $GF_LIB_PATH
gtar xvfz gf-lib-1.4.tgz
```
If this variable hasn't been defined, it is useful define it, e.g.
```
export GF_LIB_PATH=/usr/local/lib/gf/
```
==Old releases==
- [GF 2.9 download page ../../GF2/download/index.html]
|