123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ##
- # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
- #
- # Copyright:: Copyright 2014-2015 The Cyprus Institute
- # Authors:: Thekla Loizou <t.loizou@cyi.ac.cy>
- # License:: MIT/GPL
- #
- ##
- easyblock = 'ConfigureMake'
- name = 'PROJ'
- version = '7.2.1'
- homepage = 'https://proj.org'
- description = """Program proj is a standard Unix filter function which converts
- geographic longitude and latitude coordinates into cartesian coordinates"""
- toolchain = {'name': 'GCCcore', 'version': '11.2.0'}
- toolchainopts = {'pic': True}
- source_urls = ['https://download.osgeo.org/proj/']
- sources = [SOURCELOWER_TAR_GZ]
- checksums = ['b384f42e5fb9c6d01fe5fa4d31da2e91329668863a684f97be5d4760dbbf0a14']
- builddependencies = [
- ('pkg-config', '0.29.2'),
- ('binutils', '2.37'),
- ]
- dependencies = [
- ('SQLite', '3.36'),
- ('LibTIFF', '4.3.0'),
- ('cURL', '7.78.0'),
- ]
- sanity_check_paths = {
- 'files': ['bin/cct', 'bin/cs2cs', 'bin/geod', 'bin/gie', 'bin/proj', 'bin/projinfo',
- 'lib/libproj.a', 'lib/libproj.%s' % SHLIB_EXT],
- 'dirs': ['include'],
- }
- moduleclass = 'lib'
|