| 1234567891011121314151617181920212223242526272829303132333435 |
- easyblock = 'CMakeMake'
- name = 'grib_util'
- version = '1.5.0'
- homepage = 'https://github.com/NOAA-EMC/NCEPLIBS-grib_util'
- description = """This is a collection of NCEP GRIB related utilities, for GRIB1 and GRIB2."""
- toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
- toolchainopts = {'pic': True}
- source_urls = ['https://github.com/NOAA-EMC/NCEPLIBS-grib_util/archive/refs/tags/']
- sources = ['v%(version)s.tar.gz']
- checksums = ['73afba9da382fed73ed8692d77fa037bb313280879cd4012a5e5697dccf55175']
- builddependencies = [
- ('binutils', '2.42'),
- ('CMake', '3.29.3'),
- ]
- dependencies = [
- ('JasPer', '4.2.4'),
- ('libpng', '1.6.43'),
- ('libjpeg-turbo', '3.0.1'),
- ]
- # Symlink libg2c to libgrib2c
- postinstallcmds = ['cd %(installdir)s/lib && for l in libg2c{.,_,w}*; do ln -s "${l}" "${l/g2c/grib2c}"; done']
- sanity_check_paths = {
- 'files': ['lib/libg2c.%s' % SHLIB_EXT],
- 'dirs': ['include'],
- }
- moduleclass = 'data'
|