12345678910111213141516171819202122232425262728293031323334 |
- easyblock = 'ConfigureMake'
- name = 'libgeotiff'
- version = '1.5.1'
- homepage = 'https://directory.fsf.org/wiki/Libgeotiff'
- description = """Library for reading and writing coordinate system information from/to GeoTIFF files"""
- toolchain = {'name': 'GCCcore', 'version': '8.2.0'}
- source_urls = ['http://download.osgeo.org/geotiff/libgeotiff']
- sources = [SOURCE_TAR_GZ]
- checksums = ['f9e99733c170d11052f562bcd2c7cb4de53ed405f7acdde4f16195cd3ead612c']
- builddependencies = [
- ('binutils', '2.31.1'),
- ]
- dependencies = [
- ('zlib', '1.2.11'),
- ('LibTIFF', '4.0.10'),
- ('PROJ', '6.2.0'),
- ('libjpeg-turbo', '2.0.2'),
- ]
- configopts = ' --with-libtiff=$EBROOTLIBTIFF --with-proj=$EBROOTPROJ --with-zlib=$EBROOTZLIB'
- configopts += ' --with-jpeg=$EBROOTLIBJPEGMINTURBO'
- sanity_check_paths = {
- 'files': ['bin/listgeo', 'lib/libgeotiff.a', 'lib/libgeotiff.%s' % SHLIB_EXT],
- 'dirs': ['include', 'share'],
- }
- moduleclass = 'lib'
|