blob: 2c04291eeb47153fa6a960a95650ca3e7a915467 (
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
|
Grammatical Framework Download and Installation
Version 3.1.6, 23 April 2010
==Latest developer code==
[GF darcs repository ../doc/darcs.html]
==Latest release==
GF 3.1.6 released 23 April 2010.
- MacOS X installer package:
[``gf-3.1.6-leopard.pkg`` gf-3.1.6-leopard.pkg] (7.7MB)
- MacOS X (gzipped executable, Leopard and Snow Leopard):
[``gf-3.1.6-bin-intel-mac.gz`` gf-3.1.6-bin-intel-mac.gz] (1.9MB)
- Windows (zipped executable):
[``gf-3.1.6-bin-i486-windows.zip`` gf-3.1.6-bin-i486-windows.zip]
(1.6 MB)
- Ubuntu Linux (gzipped executable):
[``gf-3.1.6-bin-i486-linux.gz`` gf-3.1.6-bin-i486-linux.gz]
(1.7 MB)
- compiled library package:
[``gf-3.1.6-lib.tar.gz`` gf-3.1.6-lib.tar.gz]
(4.4 MB)
- full source package (GF system, libraries, examples, documentation):
[``gf-3.1.6-src.tar.gz`` gf-3.1.6-src.tar.gz]
(11 MB)
GF is also on [Hackage http://hackage.haskell.org/package/gf]
What's new? See the [release notes release-3.1.6.html].
==Previous releases==
[Follow this link old-index.html].
==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 MacOS X or Linux: uncompress the executable and
put it somewhere on your path, renaming it to just ``gf``. For instance:
```
gunzip gf-bin-[version].gz
sudo mv gf-bin-[version] /usr/local/bin/gf
```
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-[VERSION].tgz
```
If this variable hasn't been defined, it is useful define it, e.g.
```
export GF_LIB_PATH=/usr/local/lib/gf/
```
To compile and install from source on Mac or Linux, do:
```
tar xvfz gf-[VERSION].tgz
cd GF/src
runghc Setup configure --user
runghc Setup build
runghc Setup install
```
The last command must be prefixed by ``sudo``, if the installation is outside
user-writeable area.
|