[BACK]Return to INSTALL CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000

Annotation of OpenXM_contrib2/asir2000/INSTALL, Revision 1.3

1.1       noro        1:               Installation of Asir2000 (standalone version; 2000.9.1)
                      2:
                      3: Any questions are welcome by e-mails to noro@math.kobe-u.aj.jp.
                      4:
                      5: 0. Compiler
                      6:
                      7: On SPARCK, gcc is used. Set the search path so that
                      8: '/usr/ccs/bin' is searched before '/usr/local/bin'.
                      9:
                     10: On PC/x86 gcc is used.
                     11:
                     12: On Alpha the native compiler /usr/ccs/bin/cc is used.
                     13:
                     14: 1. Determining the install directory
                     15:
                     16: In the install directory, the following are put
                     17:
                     18: bin       executables of PARI and Asir
                     19: lib       library files of PARTI and Asir
                     20: include   header files of PARI
                     21:
                     22: These subdirectories are created automatically if they does not exist.
                     23: If you can be a root, it is recommended to install the files in '
                     24: /usr/local/lib'.  Otherwise select a directory. In the following the
                     25: directory is denoted by TARGETDIR.
                     26:
                     27: 2. Installation of pari-2.0.17.beta
                     28:
                     29: % gzip -dc pari-2.0.17.beta.tgz | tar xvf -
                     30: % cd pari-2.0.17.beta
                     31: % ./Configure --prefix=TARGETDIR
                     32: % make all
                     33: % su                         <-- if necessary
                     34: # make install
                     35: # make install-lib-sta
                     36: # exit
                     37: %
                     38:
                     39: 3. Installation of asir2000
                     40:
                     41: % gzip -dc asir2000.tgz | tar xvf -
                     42: % cd asir2000
1.3     ! noro       43: % configure -oxhome TARGETDIR -pari -plot
1.1       noro       44: % xmkmf -a
                     45: % make
                     46: % su                        <-- if necessary
                     47: # make install
1.2       noro       48: # make install-lib
                     49: # make install-doc
1.1       noro       50: # exit
                     51: %
                     52:
                     53: 3. Environment variables
                     54:
                     55: If TARGETDIR is '/usr/local/lib', then no settings of environment variabls
                     56: are required. If ASIR_LIBDIR is already set, unset it.
                     57: If TARGETDIR is not '/usr/local/lib', then set the environment variable
                     58: ASIR_LIBDIR to TARGETDIR/asir.
                     59:
                     60: 4. Making manuals
                     61:
                     62: 'ptex', 'texi2html', 'makeinfo' (ver. 1.68 or later) are required.
                     63:
                     64: % gzip -dc asir2000-man.tgz | tar xvf -
                     65: % cd asirdoc
                     66: % make
                     67:
                     68:
                     69:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>