1234567891011121314151617181920212223242526272829303132333435 |
- ##
- easyblock = 'ConfigureMake'
- name = 'UDUNITS'
- version = '1.12.11'
- homepage = 'http://www.unidata.ucar.edu/software/udunits/'
- description = """UDUNITS supports conversion of unit specifications between formatted and binary forms,
- arithmetic manipulation of units, and conversion of values between compatible scales of measurement."""
- toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
- toolchainopts = {'pic': True}
- source_urls = ['ftp://ftp.unidata.ucar.edu/pub/udunits']
- sources = [SOURCELOWER_TAR_GZ]
- patches = ['UDUNITS-1_yacc.patch']
- buildopts = 'CFLAGS="$CFLAGS -Df2cFortran" '
- builddependencies = [
- ('binutils', '2.35'),
- ('Bison', '3.7.1'),
- ('Perl', '5.32.0'),
- ]
- sanity_check_paths = {
- 'files': ['bin/udunits', 'etc/udunits.dat', 'include/udunits.inc', 'include/udunits.h',
- 'lib/libudunits.a'],
- 'dirs': [],
- }
- parallel = 1
- moduleclass = 'phys'
|