Use of CMake for installation and new web page

This commit is contained in:
Shahram Najm 2015-03-06 17:44:10 +00:00
parent a476153f94
commit 2dd96bf8a9
3 changed files with 18 additions and 20 deletions

13
INSTALL
View File

@ -17,17 +17,15 @@ Standard 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: 2. Unpack distribution:
> gunzip eccodes-X.tar.gz > tar xzf eccodes-X.tar.gz
> tar xf eccodes-X.tar
3. Create the directory where to install eccodes say eccodes_dir 3. Create a separate directory where to build eccodes
> mkdir eccodes_dir > mkdir build ; cd build
4. Run the configure in the eccodes-X 4. Run cmake
> cd eccodes-X > cmake ../eccodes-X -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
> ./configure --prefix=eccodes_dir
5. make, check and install 5. make, check and install
@ -38,3 +36,4 @@ Standard Installation
> make install > make install
... ...
For further details, see: https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation

2
NEWS
View File

@ -0,0 +1,2 @@
See https://software.ecmwf.int/wiki/display/ECC/Latest+news

23
README Executable file → Normal file
View File

@ -1,28 +1,22 @@
ecCodes is the ECMWF encoding/decoding software for GRIB (edition 1 and 2) 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
Standard Installation 1. Download eccodes from https://software.ecmwf.int/wiki/display/ECC/Releases.
1. Download from https://software.ecmwf.int/wiki/display/ECC/Releases
2. Unpack distribution: 2. Unpack distribution:
> gunzip eccodes-X.tar.gz > tar xzf eccodes-X.tar.gz
> tar xf eccodes-X.tar
3. Create the directory where to install eccodes say /usr/local/eccodes_dir 3. Create a separate directory where to build eccodes
> mkdir /usr/local/eccodes_dir > mkdir build ; cd build
4. Run the configure in the eccodes-X 4. Run cmake
> cd eccodes-X > cmake ../eccodes-X -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
> ./configure --prefix=/usr/local/eccodes_dir
Note that the prefix must be the absolute path of the
directory created.
5. make, check and install 5. make, check and install
@ -33,6 +27,9 @@ Standard Installation
> make install > make install
... ...
For further details, see: https://software.ecmwf.int/wiki/display/ECC/ecCodes+installation
COPYRIGHT AND LICENSE COPYRIGHT AND LICENSE
Copyright 2005-2015 ECMWF. Copyright 2005-2015 ECMWF.