1
0
forked from GitHub/gf-core

updated readme and install

This commit is contained in:
aarne
2008-06-27 17:34:17 +00:00
parent f6b10c5214
commit 00e2740039
4 changed files with 15 additions and 27 deletions

View File

@@ -18,10 +18,10 @@
<P></P> <P></P>
<LI>GF 3.0 beta MacOS X binaries: <LI>GF 3.0 beta MacOS X binaries:
<A HREF="gf-3.0beta-mac-leopard.gz">Leopard</A> (Intel Mac with MacOS X Leopard) <A HREF="gf-3.0beta-mac-leopard.gz">Leopard</A> (Intel Mac with MacOS X Leopard)
<A HREF="gf-3.0beta-mac-tiger.gz">Leopard</A> (Intel Mac with MacOS X Tiger) <A HREF="gf-3.0beta-mac-tiger.gz">Tiger</A> (Intel Mac with MacOS X Tiger)
<P></P> </UL>
<LI><A HREF="gf-3.0beta-mac.exe">GF 3.0 beta Windows binary</A>
<P></P> <UL>
<LI><A HREF="gf-3.0beta.tgz">GF 3.0 beta sources</A> <LI><A HREF="gf-3.0beta.tgz">GF 3.0 beta sources</A>
<P></P> <P></P>
<LI><A HREF="gf-lib-1.4.tgz">GF libraries v 1.4</A> (compiled resource grammar libraries) <LI><A HREF="gf-lib-1.4.tgz">GF libraries v 1.4</A> (compiled resource grammar libraries)

View File

@@ -11,9 +11,9 @@ Grammatical Framework Download and Installation
- GF 3.0 beta MacOS X binaries: - GF 3.0 beta MacOS X binaries:
[Leopard gf-3.0beta-mac-leopard.gz] (Intel Mac with MacOS X Leopard) [Leopard gf-3.0beta-mac-leopard.gz] (Intel Mac with MacOS X Leopard)
[Leopard gf-3.0beta-mac-tiger.gz] (Intel Mac with MacOS X Tiger) [Tiger gf-3.0beta-mac-tiger.gz] (Intel Mac with MacOS X Tiger)
- [GF 3.0 beta Windows binary gf-3.0beta-mac.exe] % - [GF 3.0 beta Windows binary gf-3.0beta-windows.exe]
- [GF 3.0 beta sources gf-3.0beta.tgz] - [GF 3.0 beta sources gf-3.0beta.tgz]

View File

@@ -120,8 +120,8 @@ Later projects using GF and involving third parties include, in chronological or
- SALDO: Swedish morphological dictionary based on tools developed for GF - SALDO: Swedish morphological dictionary based on tools developed for GF
Academically, GF has been used in four [PhD theses ], and resulted in around Academically, GF has been used in four PhD theses and resulted in around
fifty [scientific publications ]. fifty scientific publications (see [GF publication list doc/gf-bibliography.html]).
==Programming in GF== ==Programming in GF==

View File

@@ -1,4 +1,4 @@
To make and install GF (Updated for version 2.4). To make and install GF (Updated for version 2.4 and 3.0beta).
1. Unpack GF and go to the source directory (the place where this 1. Unpack GF and go to the source directory (the place where this
INSTALL file is - so you have probably done this already!) INSTALL file is - so you have probably done this already!)
@@ -24,10 +24,6 @@ To make and install GF (Updated for version 2.4).
./configure --prefix=/usr ./configure --prefix=/usr
To compile on Chalmers Solaris systems using VCS, use this configuration:
./configure CPPFLAGS="`lib__readline -I` `lib__ncurses -I`" LDFLAGS="`lib__readline -l` `lib__ncurses -l`"
If you experience problems with readline, try: If you experience problems with readline, try:
./configure --with-readline=no ./configure --with-readline=no
@@ -68,26 +64,18 @@ To make and install GF (Updated for version 2.4).
-- when gf has started and shows the prompt >: -- when gf has started and shows the prompt >:
> parse "this cheese is very very Italian" | tree_bank > parse "this cheese is very very Italian" | linearize -treebank
-- this is the response from GF: -- this is the response from GF:
Is (This Cheese) (Very (Very Italian)) Is (This Cheese) (Very (Very Italian))
this cheese is very very Italian this cheese is very very Italian
questo formaggio è molto molto italiano questo formaggio è molto molto italiano
10. If you want to run the Java GUI, go back to $GFHOME/src directory > generate_random | linearize -treebank
and also do
make install-java > help
Test the GUI with some grammars:
Author: Aarne Ranta, Björn Bringert 8/11/2004 -- 26/01/2006 -- 27/6/2008
cd ../examples/letter
gf <mkLetter.gfs
jgf Letter.gfcm
When the window opens, push the Random button.
Author: Aarne Ranta, Björn Bringert 8/11/2004 -- 26/01/2006 -- 3/9/2007