mirror of https://github.com/ecmwf/eccodes.git
Updated the top-level text files with installation info etc
This commit is contained in:
parent
04c370da62
commit
15ae2b475a
3
AUTHORS
3
AUTHORS
|
@ -1,7 +1,6 @@
|
||||||
Enrico Fucile
|
Enrico Fucile
|
||||||
Shahram Najm
|
Shahram Najm
|
||||||
Sandor Kertesz
|
Sandor Kertesz
|
||||||
Baudoin Raoult
|
Baudouin Raoult
|
||||||
Cristian Codorean
|
Cristian Codorean
|
||||||
Jean-Baptiste Filippi
|
Jean-Baptiste Filippi
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,3 @@ The changelog is now online. Please see:
|
||||||
|
|
||||||
https://software.ecmwf.int/wiki/display/ECC/History+of+Changes
|
https://software.ecmwf.int/wiki/display/ECC/History+of+Changes
|
||||||
|
|
||||||
|
|
||||||
|
|
50
INSTALL
50
INSTALL
|
@ -1,39 +1,37 @@
|
||||||
|
How to build and install ecCodes library/tools
|
||||||
|
================================================
|
||||||
|
|
||||||
The ecCodes installation is based on the standard configure utility.
|
Building and installation has been tested on several platforms and with several compilers.
|
||||||
It is tested on several platforms and with several compilers. However for some platforms
|
However for some platforms modifications to the installation engine may be required.
|
||||||
modifications to the installation engine may be required. If you encounter any problem
|
If you encounter any problems during the installation procedure please send an e-mail
|
||||||
during the installation procedure please send an e-mail with your problem to
|
with your problem to:
|
||||||
Software.Support@ecmwf.int.
|
|
||||||
|
|
||||||
The only required package for a standard installation is jasper which enables the jpeg2000
|
Software.Support@ecmwf.int
|
||||||
packing/unpacking algorithm.
|
|
||||||
It is possible to build ecCodes without jasper, by using the --disable-jpeg configure option,
|
|
||||||
but to install a fully functional library, its download is recommended.
|
|
||||||
|
|
||||||
|
|
||||||
Standard Installation
|
Installation using CMake
|
||||||
=====================
|
------------------------
|
||||||
|
This is the recommended method of installation.
|
||||||
|
However it requires that cmake be installed on your system.
|
||||||
|
|
||||||
1. Download eccodes from https://software.ecmwf.int/wiki/display/ECC/Releases.
|
1. Download ecCodes from https://software.ecmwf.int/wiki/display/ECC/Releases
|
||||||
2. Unpack distribution:
|
|
||||||
|
|
||||||
> tar xzf eccodes-X.tar.gz
|
2. Unpack distribution:
|
||||||
|
> tar -xzf eccodes-x.y.z-Source.tar.gz
|
||||||
|
|
||||||
3. Create a separate directory where to build eccodes
|
3. Create a separate directory where to build ecCodes:
|
||||||
|
> mkdir build
|
||||||
|
> cd build
|
||||||
|
|
||||||
> mkdir build ; cd build
|
4. Run cmake pointing to the installation location:
|
||||||
|
> cmake ../eccodes-x.y.z-Source -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
|
||||||
4. Run cmake
|
|
||||||
|
|
||||||
> cmake ../eccodes-X -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
|
|
||||||
|
|
||||||
5. make, check and install
|
|
||||||
|
|
||||||
|
5. make, check and install:
|
||||||
> make
|
> make
|
||||||
...
|
|
||||||
> make check
|
> make check
|
||||||
...
|
|
||||||
> make install
|
> make install
|
||||||
...
|
|
||||||
|
|
||||||
For further details, see: https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
|
|
||||||
|
For more details, please see:
|
||||||
|
https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
|
||||||
|
|
||||||
|
|
32
README
32
README
|
@ -1,36 +1,36 @@
|
||||||
ecCodes is the ECMWF encoding/decoding software for GRIB and BUFR.
|
ecCodes is the ECMWF encoding/decoding software for GRIB and BUFR.
|
||||||
|
|
||||||
Documentation can be found here:
|
Documentation can be found here:
|
||||||
https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home
|
https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home
|
||||||
|
|
||||||
INSTALLATION
|
INSTALLATION
|
||||||
|
------------
|
||||||
|
|
||||||
1. Download eccodes from https://software.ecmwf.int/wiki/display/ECC/Releases.
|
1. Download ecCodes from https://software.ecmwf.int/wiki/display/ECC/Releases
|
||||||
2. Unpack distribution:
|
|
||||||
|
|
||||||
> tar xzf eccodes-X.tar.gz
|
2. Unpack distribution:
|
||||||
|
> tar -xzf eccodes-x.y.z-Source.tar.gz
|
||||||
|
|
||||||
3. Create a separate directory where to build eccodes
|
3. Create a separate directory where to build ecCodes:
|
||||||
|
> mkdir build
|
||||||
|
> cd build
|
||||||
|
|
||||||
> mkdir build ; cd build
|
4. Run cmake pointing to the installation location:
|
||||||
|
> cmake ../eccodes-x.y.z-Source -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
|
||||||
4. Run cmake
|
|
||||||
|
|
||||||
> cmake ../eccodes-X -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
|
|
||||||
|
|
||||||
5. make, check and install
|
|
||||||
|
|
||||||
|
5. make, check and install:
|
||||||
> make
|
> make
|
||||||
...
|
|
||||||
> make check
|
> make check
|
||||||
...
|
|
||||||
> make install
|
> make install
|
||||||
...
|
|
||||||
|
|
||||||
For further details, see: https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
|
|
||||||
|
For more details, please see:
|
||||||
|
https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
COPYRIGHT AND LICENSE
|
COPYRIGHT AND LICENSE
|
||||||
|
----------------------
|
||||||
|
|
||||||
Copyright 2005-2015 ECMWF.
|
Copyright 2005-2015 ECMWF.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue