| 1 | = Getting F2CL = |
| 2 | |
| 3 | |
| 4 | === Via Quicklisp === |
| 5 | The easiest way to get F2CL is to use |
| 6 | [http://www.Quicklisp.org Quicklisp]. You can just say |
| 7 | |
| 8 | {{{ |
| 9 | (ql:quickload :f2cl) |
| 10 | }}} |
| 11 | |
| 12 | to get f2cl. |
| 13 | |
| 14 | === Via Mercurial (hg) === |
| 15 | |
| 16 | The second easiest way to get F2CL is to clone the hg (Mercurial) |
| 17 | repository: |
| 18 | |
| 19 | |
| 20 | {{{ |
| 21 | hg clone http://common-lisp.net/project/f2cl/hg/f2cl |
| 22 | }}} |
| 23 | |
| 24 | For developers with ssh access, you can use |
| 25 | |
| 26 | {{{ |
| 27 | hg clone ssh://user@common-lisp.net//project/f2cl/public_html/hg/f2cl |
| 28 | }}} |
| 29 | |
| 30 | Substitute your user name for "user", of course. Also, note the two |
| 31 | slashes before project. These are important. |
| 32 | |
| 33 | Note that when f2cl converts a Fortran file to Lisp, it includes |
| 34 | information about the version of f2cl used to do the conversion. For |
| 35 | this to work you will need to set up Mercurial to use the keyword |
| 36 | extension. Add the following to your {{{.hgrc}}} file: |
| 37 | |
| 38 | {{{ |
| 39 | [extensions] |
| 40 | # Enable the Mercurial keyword extension for RCS keywords. |
| 41 | keyword = |
| 42 | |
| 43 | # Filename patterns for CVS keyword expansion are configured in this |
| 44 | # section |
| 45 | [keyword] |
| 46 | # Expand keywords in all .l files. Basically for f2cl sources. |
| 47 | src/*.l = |
| 48 | }}} |
| 49 | |
| 50 | Now when you clone f2cl, you should something like this in |
| 51 | {{{src/f2cl1.l}}}: |
| 52 | |
| 53 | {{{ |
| 54 | (defparameter *f2cl1-version* |
| 55 | "$Id: f2cl1.l,v f0f149e72999 2010/10/08 03:05:30 rtoy $") |
| 56 | }}} |