mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
36 lines
934 B
Plaintext
36 lines
934 B
Plaintext
# IT4Innovations 2018
|
|
|
|
name = 'netCDF'
|
|
version = '4.6.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': 'iomkl', 'version': '2017b'}
|
|
toolchainopts = {'pic': True, 'usempi': True}
|
|
|
|
sources = ['v%(version)s.tar.gz']
|
|
source_urls = ['https://github.com/Unidata/netcdf-c/archive/']
|
|
|
|
dependencies = [
|
|
('HDF5', '1.10.1'),
|
|
('cURL', '7.56.1', '', True),
|
|
('Szip', '2.1', '', True),
|
|
]
|
|
|
|
builddependencies = [
|
|
('Autotools', '20180311', '', True),
|
|
('CMake', '3.11.4', '', ('GCC', '6.3.0-2.27')),
|
|
('Doxygen', '1.8.11', '', True),
|
|
]
|
|
|
|
# make sure both static and shared libs are built
|
|
configopts = [
|
|
"-DBUILD_SHARED_LIBS=OFF ",
|
|
"-DBUILD_SHARED_LIBS=ON ",
|
|
]
|
|
|
|
moduleclass = 'data'
|