From cbbc2a50d70050a4eaaf1f7a52b28f6cff3d9c81 Mon Sep 17 00:00:00 2001 From: aarne Date: Thu, 22 Apr 2010 17:24:15 +0000 Subject: [PATCH] release notes and new download page for 3.1.6 --- download/index.html | 180 +++++++++++++--------------------------- download/index.txt | 67 ++++++--------- download/old-index.html | 146 ++++++++++++++++++++++++++++++++ 3 files changed, 226 insertions(+), 167 deletions(-) create mode 100644 download/old-index.html diff --git a/download/index.html b/download/index.html index 74dabb08c..6651bf3a7 100644 --- a/download/index.html +++ b/download/index.html @@ -1,145 +1,77 @@ - + Grammatical Framework Download and Installation - - - - -

Grammatical Framework
Download and Installation

+ +

Grammatical Framework Download and Installation

+ +

Latest developer code

-GF darcs repository +GF darcs repository

- -

Latest release

- -
-
GF 3.1, 15 December 2009 -
-

-

- -

Installation instructions

- -
    -
  • Linux & Mac binaries: tar xvfz in / -
  • Windows binary: unzip in c:\ -
  • Compiled library: - tar xvfz in some DIR and point the variable GF_LIB_PATH to DIR/lib. -
  • -Source package: tar xvfz somewhere and compile as follows: +

    Latest release

    -

    -    tar xvfz gf-3.0.tgz
    -    cd gf-3.0
    +GF 3.1.6 released 23 May 2010.
    +

    +
      +
    • MacOS X (Snow Leopard): +
    • MacOS X (Leopard): +
    • Windows: +
    • Ubuntu Linux: +
    • compiled library package: +
    • full source package (GF system, libraries, examples, documentation): +
    - # alternative 1: - runghc Setup configure +

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

    +

    Previous releases

    +

    +Follow this link. +

    +

    Installation instructions

    +

    +The MacOS packages are installed by clicking at the icons, as usual. +

    +

    +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: uncompress the package by tar -xfz +

    +

    +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
    -
    -    # alternative 2:
    -    make
    -    make install
     
    -
- -

Old releases

- -
-
GF 3.0, 24 June 2009. -

-

- -

Installation instructions

- -

-Mac binary: gunzip and put somewhere on your path. -

-Linux: tar xvfz in / -

-Windows: unzip in c:\ -

-Compiled library: tar xvfz in some DIR and point the variable GF_LIB_PATH to DIR/lib. -

-Source package: tar xvfz somewhere and compile as follows: +The last command must be prefixed by sudo, if the installation is outside +user-writeable area. +

+To install the libraries (if done separately), unpack them in the place to which your +GF_LIB_PATH points. +

-    tar xvfz gf-3.0.tgz
-    cd gf-3.0
-
-    # alternative 1:
-    runghc Setup configure
-    runghc Setup build
-    runghc Setup install
-
-    # alternative 2:
-    make
-    make install
+    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/
 
-
- - -GF 3.0 beta3, April 2009. - -3.0 beta2 - - diff --git a/download/index.txt b/download/index.txt index fa3498eb6..bf006e6a5 100644 --- a/download/index.txt +++ b/download/index.txt @@ -7,62 +7,48 @@ Grammatical Framework Download and Installation ==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) +GF 3.1.6 released 23 May 2010. +- MacOS X (Snow Leopard): +- MacOS X (Leopard): +- Windows: +- Ubuntu Linux: +- compiled library package: +- full source package (GF system, libraries, examples, documentation): +What's new? See the [release notes release-3.1.6.txt]. -==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) +==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. +The MacOS packages are installed by clicking at the icons, as usual. -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 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: uncompress the package by ``tar -xfz`` -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: +To compile and install from source on Mac or Linux, do: ``` - tar xvfz gf-3.0beta.tgz + tar xvfz gf-[VERSION].tgz cd GF/src - autoconf - ./configure - make - make install + 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. + 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 + gtar xvfz gf-lib-[VERSION].tgz ``` If this variable hasn't been defined, it is useful define it, e.g. ``` @@ -70,8 +56,3 @@ If this variable hasn't been defined, it is useful define it, e.g. ``` -==Old releases== - -- [GF 2.9 download page ../../GF2/download/index.html] - - diff --git a/download/old-index.html b/download/old-index.html new file mode 100644 index 000000000..74dabb08c --- /dev/null +++ b/download/old-index.html @@ -0,0 +1,146 @@ + + + + +Grammatical Framework Download and Installation + + + + +

Grammatical Framework
Download and Installation

+ +

Latest developer code

+

+GF darcs repository +

+ +

Latest release

+ +
+
GF 3.1, 15 December 2009 +
+

+

+ +

Installation instructions

+ +
    +
  • Linux & Mac binaries: tar xvfz in / +
  • Windows binary: unzip in c:\ +
  • Compiled library: + tar xvfz in some DIR and point the variable GF_LIB_PATH to DIR/lib. +
  • +Source package: tar xvfz somewhere and compile as follows: +

    +

    +    tar xvfz gf-3.0.tgz
    +    cd gf-3.0
    +
    +    # alternative 1:
    +    runghc Setup configure
    +    runghc Setup build
    +    runghc Setup install
    +
    +    # alternative 2:
    +    make
    +    make install
    +
    +
+ +

Old releases

+ +
+
GF 3.0, 24 June 2009. +
+

+

+ +

Installation instructions

+ +

+Mac binary: gunzip and put somewhere on your path. +

+Linux: tar xvfz in / +

+Windows: unzip in c:\ +

+Compiled library: tar xvfz in some DIR and point the variable GF_LIB_PATH to DIR/lib. +

+Source package: tar xvfz somewhere and compile as follows: +

+

+    tar xvfz gf-3.0.tgz
+    cd gf-3.0
+
+    # alternative 1:
+    runghc Setup configure
+    runghc Setup build
+    runghc Setup install
+
+    # alternative 2:
+    make
+    make install
+
+
+ + +GF 3.0 beta3, April 2009. + +3.0 beta2 + + + + + +