diff options
| author | aarne <aarne@cs.chalmers.se> | 2008-06-27 14:14:01 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2008-06-27 14:14:01 +0000 |
| commit | 21c457b711d8e9544c72e466c7d85204c82711f5 (patch) | |
| tree | 711e25aee0ad39b4b804802e8f7b2c44045dd63e /download | |
| parent | 73e401cee21fa61dcf9900d8d2b40ddd39f4e612 (diff) | |
documentation written; some weird constructors excluded from demo
Diffstat (limited to 'download')
| -rw-r--r-- | download/index.html | 124 | ||||
| -rw-r--r-- | download/index.txt | 53 |
2 files changed, 123 insertions, 54 deletions
diff --git a/download/index.html b/download/index.html index d2366c808..b1fd1774f 100644 --- a/download/index.html +++ b/download/index.html @@ -1,56 +1,72 @@ -<html> -<body> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<HTML> +<HEAD> +<META NAME="generator" CONTENT="http://txt2tags.sf.net"> +<TITLE>Grammatical Framework Download and Installation</TITLE> +</HEAD><BODY BGCOLOR="white" TEXT="black"> +<P ALIGN="center"><CENTER><H1>Grammatical Framework Download and Installation</H1> +<FONT SIZE="4"> +</FONT></CENTER> -GF Version 2.9, released 21 December 2007 as sources: -<ul> -<li> <a href="GF-2.9.tgz"><tt>GF-2.9.tgz</tt></a>, -Haskell and Java sources, grammar library sources, examples, documentation. -To compile and install: read <a href="../src/INSTALL"><tt>src/INSTALL</tt></a>. +<H2>Latest developer code</H2> +<P> +<A HREF="../doc/darcs.html">GF darcs repository</A> +</P> +<H2>Latest release</H2> +<P> +<A HREF="gf-3.0beta-linux.gz">GF 3.0 beta Linux binary</A> (Intel, Ubuntu) +</P> +<P> +<A HREF="gf-3.0beta-mac.gz">GF 3.0 beta MacOS X binary</A> (Intel Mac with Leopard) +</P> +<P> +<A HREF="gf-3.0beta-mac.exe">GF 3.0 beta Windows binary</A> +</P> +<P> +<A HREF="gf-3.0beta.tgz">GF 3.0 beta sources</A> +</P> +<P> +<A HREF="gf-lib-1.4.tgz">GF libraries v 1.4</A> (compiled resource grammar libraries) +</P> +<H2>Old releases</H2> +<P> +<A HREF="../GF2/download/index.html">GF 2.9 download page</A> +</P> +<H2>Installation instructions</H2> +<P> +To compile and install from source: +</P> +<PRE> + tar xvfz gf-3.0beta.tgz + cd GF/src + autoconf + ./configure + make + make install +</PRE> +<P> +To install a binary, +</P> +<PRE> + tar xvfz BINARY-PACKAGE.tgz + cd GF-... + ./configure + make install +</PRE> +<P> +You may need <CODE>sudo make install</CODE>. +If you cannot write in <CODE>/usr/local/</CODE>, you can change the target directory +by <CODE>./configure --prefix=MYDIR</CODE>. +</P> +<P> +The Mac OS X binary (Intel) requires Readline from +<A HREF="http://www.macports.org/">Mac Ports</A>. To install, see above item. +</P> +<P> +The Windows binary is easiest if you have +<A HREF="http://www.cygwin.com/">Cygwin</A>. To install, see above item. +</P> -<li> <a href="GF-2.9-lib.tgz"><tt>GF-2.9-lib.tgz</tt></a>, -Compiled grammar libraries</a>. To install: -unpack this in the directory pointed by <tt>GF_LIB_PATH</tt>. -</ul> -Binaries: GF Version 2.8, released 8 July 2007; updated 12 September. -<ul> -<li> <a href="GF-2.8-i386-pc-linux-gnu.tgz"><tt>GF-2.8-i386-pc-linux-gnu.tgz</tt></a>, -Linux binary, with precompiled grammar libraries. To install: -<pre> - tar xvfz GF-2.8-i386-pc-linux-gnu.tgz - cd GF-2.8-i386-pc-linux-gnu - ./configure - make install -</pre> -You may need <tt>sudo make install</tt>; if you cannot write in -<tt>/usr/local/</tt>, you can change the target directory -by <tt>./configure --prefix=MYDIR</tt>. - - -<li> <a href="GF-2.8-i386-apple-darwin8.9.1.tgz"><tt>GF-2.8-i386-apple-darwin8.9.1.tgz</tt></a>, Mac OS X binary (Intel), with precompiled grammar libraries. Requires Readline from -<a href="http://www.macports.org/">MacPorts</a>. To install, see above item. - -<li> <a href="GF-2.8-windows-cygwin.tgz"><tt>GF-2.8-windows-cygwin.tgz</tt></a>, Windows Cygwin binary. Requires -<a href="http://www.cygwin.com/">Cygwin</a>. To install, see above item. - -</ul> -The <a href= -"http://sourceforge.net/project/showfiles.php?group_id=132285">Sourceforge GF site</a> -has currently only v 2.7 and older versions. - -<p> - -Don't forget that you can always get the current sources from the -<a href="http://www.cs.chalmers.se/Cs/Research/Language-technology/darcs/GF/doc/darcs.html">GF Darcs Repository</a>. First time you do -<pre> - darcs get --partial --set-scripts-executable http://www.cs.chalmers.se/Cs/Research/Language-technology/darcs/GF/ -</pre> -and subsequent times -<pre> - darcs pull -a -</pre> -Then compile and install as described in -<a href="src/INSTALL"><tt>GF/src/INSTALL</tt></a>. - - -</body> -</html> +<!-- html code generated by txt2tags 2.4 (http://txt2tags.sf.net) --> +<!-- cmdline: txt2tags -thtml download/index.txt --> +</BODY></HTML> diff --git a/download/index.txt b/download/index.txt new file mode 100644 index 000000000..b036e0ccc --- /dev/null +++ b/download/index.txt @@ -0,0 +1,53 @@ +Grammatical Framework Download and Installation + + +==Latest developer code== + +[GF darcs repository ../doc/darcs.html] + +==Latest release== + +[GF 3.0 beta Linux binary gf-3.0beta-linux.gz] (Intel, Ubuntu) + +[GF 3.0 beta MacOS X binary gf-3.0beta-mac.gz] (Intel Mac with Leopard) + +[GF 3.0 beta Windows binary gf-3.0beta-mac.exe] + +[GF 3.0 beta sources gf-3.0beta.tgz] + +[GF libraries v 1.4 gf-lib-1.4.tgz] (compiled resource grammar libraries) + + +==Old releases== + +[GF 2.9 download page ../GF2/download/index.html] + + +==Installation instructions== + +To compile and install from source: +``` + tar xvfz gf-3.0beta.tgz + cd GF/src + autoconf + ./configure + make + make install +``` +To install a binary, +``` + tar xvfz BINARY-PACKAGE.tgz + cd GF-... + ./configure + make install +``` +You may need ``sudo make install``. +If you cannot write in ``/usr/local/``, you can change the target directory +by ``./configure --prefix=MYDIR``. + +The Mac OS X binary (Intel) requires Readline from +[Mac Ports http://www.macports.org/]. To install, see above item. + +The Windows binary is easiest if you have +[Cygwin http://www.cygwin.com/]. To install, see above item. + |
