mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-12 18:02:12 +01:00
35 lines
842 B
Plaintext
35 lines
842 B
Plaintext
name = 'netCDF'
|
|
version = '4.3.3.1'
|
|
|
|
homepage = 'http://www.unidata.ucar.edu/software/netcdf/'
|
|
description = """NetCDF (network Common Data Form) is a set of software libraries
|
|
and machine-independent data formats that support the creation, access, and sharing of array-oriented
|
|
scientific data."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2017.00'}
|
|
toolchainopts = {'pic': True, 'usempi': True}
|
|
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
source_urls = [
|
|
'ftp://ftp.unidata.ucar.edu/pub/netcdf/',
|
|
'ftp://ftp.unidata.ucar.edu/pub/netcdf/old',
|
|
]
|
|
|
|
dependencies = [
|
|
('HDF5', '1.8.16'),
|
|
('cURL', '7.51.0'),
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.5.2'),
|
|
('Doxygen', '1.8.11'),
|
|
]
|
|
|
|
# make sure both static and shared libs are built
|
|
configopts = [
|
|
"-DBUILD_SHARED_LIBS=OFF ",
|
|
"-DBUILD_SHARED_LIBS=ON ",
|
|
]
|
|
|
|
moduleclass = 'data'
|