diff --git a/download/index-3.1.6.html b/download/index-3.1.6.html new file mode 100644 index 000000000..743cce35c --- /dev/null +++ b/download/index-3.1.6.html @@ -0,0 +1,102 @@ + + + + +Grammatical Framework Download and Installation + +

Grammatical Framework Download and Installation

+ +Version 3.1.6, 23 April 2010
+
+ +

Latest developer code

+

+GF darcs repository +

+

Latest release

+

+GF 3.1.6 released 23 April 2010. +

+ + +

+What's new? See the release notes. +

+

Previous releases

+

+Follow this link. +

+

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. +

+ + + + + + diff --git a/download/index.txt b/download/index-3.1.6.t2t similarity index 100% rename from download/index.txt rename to download/index-3.1.6.t2t diff --git a/download/index.html b/download/index.html index 743cce35c..e9da919cc 100644 --- a/download/index.html +++ b/download/index.html @@ -2,101 +2,123 @@ + Grammatical Framework Download and Installation -

Grammatical Framework Download and Installation

+

Grammatical Framework Download and Installation

-Version 3.1.6, 23 April 2010
-

Latest developer code

-GF darcs repository +GF 3.2 was released on 23 December 2010.

-

Latest release

-GF 3.1.6 released 23 April 2010. +What's new? See the Release notes.

- +

Binary packages for the latest release

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
PlatformDownloadHow to install
Linux (32-bit)gf-3.2-bin-i386-linux.tar.gzsudo tar -C /usr/local -zxf gf-3.2-bin-i386-linux.tar.gz
Linux (64-bit)gf-3.2-bin-x86_64-linux.tar.gzsudo tar -C /usr/local -zxf gf-3.2-bin-x86_64-linux.tar.gz
MacOS Xgf-3.2-bin-intel-mac.tar.gzsudo tar -C /usr/local -zxf gf-3.2-bin-intel-mac.tar.gz
Windowsgf-3.2-bin-i386-windows.zipunzip gf-3.2-bin-i386-windows.zip

-What's new? See the release notes. +More packages might be added later.

-

Previous releases

-

-Follow this link. -

-

Installation instructions

+

Notes

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: +The MacOS and Linux packages are designed to be installed in /usr/local. +You can install them in other locations, but then you need to set the +GF_LIB_PATH environment variable:

-    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/
+    export GF_LIB_PATH=/usr/local/share/gf-3.2/lib
 

-To compile and install from source on Mac or Linux, do: +where /usr/local should be replaced with the path to the location where you +unpacked the package. +

+

Installing the latest release from source

+

+GF is on Hackage, so the prodedure is +fairly simple: +

+
    +
  1. Install the + Haskell Platform 2010.2.0.0 (July 2010). +
  2. cabal update +
  3. On Linux: install some C libraries from your Linux distribution (see below) +
  4. cabal install gf +
+ +

+You can also download the full source package from here: +gf-3.2.tar.gz. +

+

Notes

+

+The above steps installs GF for a single user and does not require root +privileges. The executables are put in $HOME/.cabal/bin, so it is a good +idea to put a line in your .bash_profile to add that directory to you path:

-    tar xvfz gf-[VERSION].tgz
-    cd GF/src
-    runghc Setup configure --user
-    runghc Setup build
-    runghc Setup install
+    PATH=$HOME/.cabal/bin:$PATH
 
+

-The last command must be prefixed by sudo, if the installation is outside -user-writeable area. +GF uses haskeline, which depends some non-Haskell libraries that +won't be installed automatically by cabal, so you need to install +them manually. Here is one way to do this: +

+ + +

Older releases

+ + +

Latest developer code

+
+    darcs get --lazy http://www.grammaticalframework.org/
+
+

+
+

+

+www.grammaticalframework.org

- + - - diff --git a/download/index-3.2.t2t b/download/index.t2t similarity index 95% rename from download/index-3.2.t2t rename to download/index.t2t index fb89f0f2c..a31a52698 100644 --- a/download/index-3.2.t2t +++ b/download/index.t2t @@ -52,6 +52,9 @@ fairly simple: + ``cabal install gf`` +You can also download the full source package from here: +[``gf-3.2.tar.gz`` gf-3.2.tar.gz]. + === Notes === The above steps installs GF for a single user and does not require root @@ -72,7 +75,7 @@ them manually. Here is one way to do this: ==Older releases== -- [GF 3.1.6 index.html] (April 2010). +- [GF 3.1.6 index-3.1.6.html] (April 2010). - [GF 3.1 old-index.html] (December 2009). diff --git a/download/release-3.2.t2t b/download/release-3.2.t2t index af9f29e19..04832c674 100644 --- a/download/release-3.2.t2t +++ b/download/release-3.2.t2t @@ -2,6 +2,7 @@ GF Version 3.2 Release Notes 23 December 2010 %!style:../css/style.css +%!postproc(html):

==Installation== diff --git a/index.html b/index.html index 8f56c0406..354aa731d 100644 --- a/index.html +++ b/index.html @@ -11,15 +11,14 @@

Grammatical Framework

-Version 3.1.6 +Version 3.2
-April 2010 -
-Version 3.2 coming before Xmas 2010! +December 2010 +

[ Demos -| Download +| Download | Libraries | Reference | Tutorial @@ -39,14 +38,15 @@ April 2010

News

-
- -

- -22/12/2010 - GF Summer School in Barcelona, - 15-26 August 2011. +

+
+
2010-12-23: GF 3.2 released! + Release notes +
2010-12-22: + GF Summer School + in Barcelona, 15-26 August 2011. +