mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 19:28:06 +01:00

new file: e/expat/expat-2.2.0.eb new file: f/fontconfig/fontconfig-2.12.1-libpng-1.6.29.eb new file: f/freetype/freetype-2.7.1-libpng-1.6.29.eb new file: g/GDAL/GDAL-2.1.3-Python-2.7.13.eb new file: g/GDAL/GDAL-2.1.3-intel-2017a-Python-2.7.13.eb new file: g/GDAL/GDAL-2.1.3_fix-uchar-definition.patch new file: g/GEOS/GEOS-3.6.1-Python-2.7.13.eb new file: g/GLib/GLib-2.52.0.eb new file: g/GMP/GMP-6.1.2.eb new file: l/LibTIFF/LibTIFF-4.0.7.eb new file: l/libdrm/libdrm-2.4.76.eb new file: l/libjpeg-turbo/libjpeg-turbo-1.5.1.eb new file: l/libpng/libpng-1.6.29.eb new file: l/libreadline/libreadline-7.0.eb new file: l/libxml2/libxml2-2.9.4-Python-2.7.13.eb new file: m/Mako/Mako-1.0.6-Python-2.7.13.eb new file: m/Mesa/Mesa-17.0.2-intel-2017a.eb new file: n/NASM/NASM-2.12.02.eb new file: n/nettle/nettle-3.3-intel-2017a.eb new file: p/PCRE/PCRE-8.40.eb new file: p/pixman/pixman-0.34.0.eb new file: p/pkg-config/pkg-config-0.29.1.eb new file: r/R/R-3.4.0-intel-2017a-X11-20170314.eb new file: s/SQLite/SQLite-3.17.0.eb new file: s/SWIG/SWIG-3.0.12-Python-2.7.13.eb new file: t/Tcl/Tcl-8.6.6.eb new file: t/Tk/Tk-8.6.6.eb new file: u/util-linux/util-linux-2.29.2.eb new file: x/X11/X11-20170314.eb modified: x/XZ/XZ-5.2.2.eb new file: x/XZ/XZ-5.2.3.eb
49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'GDAL'
|
|
version = '2.1.3'
|
|
versionsuffix = '-Python-%(pyver)s'
|
|
|
|
homepage = 'http://www.gdal.org/'
|
|
description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
|
|
Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
|
|
to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
|
|
data translation and processing."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2017a'}
|
|
toolchainopts = {'usempi': True}
|
|
|
|
source_urls = ['http://download.osgeo.org/gdal/%(version)s/']
|
|
sources = [SOURCELOWER_TAR_XZ]
|
|
patches = ['GDAL-%(version)s_fix-uchar-definition.patch']
|
|
|
|
dependencies = [
|
|
('Python', '2.7.13', '', True),
|
|
('netCDF', '4.4.1.1'),
|
|
('expat', '2.2.0', '', True),
|
|
('GEOS', '3.6.1', versionsuffix, True),
|
|
('SQLite', '3.17.0', '', True),
|
|
('libxml2', '2.9.4', '', True),
|
|
('libpng', '1.6.29', '', True),
|
|
('libjpeg-turbo', '1.5.1', '', True),
|
|
('JasPer', '2.0.12'),
|
|
('LibTIFF', '4.0.7', '', True),
|
|
('zlib', '1.2.11', '', True),
|
|
('cURL', '7.53.1', '', True),
|
|
('PCRE', '8.40', '', True),
|
|
]
|
|
|
|
configopts = '--with-expat=$EBROOTEXPAT --with-libz=$EBROOTLIBZ --with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF'
|
|
configopts += ' --with-xml2=$EBROOTLIBXML2 --with-geos=$EBROOTGEOS/bin/geos-config --with-jpeg=$EBROOTLIBJPEGMINTURBO'
|
|
configopts += ' --with-png=$EBROOTLIBPNG --with-sqlite3=$EBROOTSQLITE --with-jasper=$EBROOTJASPER'
|
|
configopts += ' --with-libtiff=$EBROOTLIBTIFF --with-pcre=$EBROOTPCRE --with-python=$EBROOTPYTHON/bin/python'
|
|
|
|
modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib/libgdal.a', 'lib/libgdal.%s' % SHLIB_EXT],
|
|
'dirs': ['bin', 'include', 'lib/python%(pyshortver)s/site-packages']
|
|
}
|
|
|
|
moduleclass = 'data'
|