## # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild # # Copyright:: Copyright 2014-2015 The Cyprus Institute # Authors:: Thekla Loizou # License:: MIT/GPL # ## easyblock = 'ConfigureMake' name = 'PROJ' version = '7.2.0' 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': '10.2.0'} toolchainopts = {'pic': True} source_urls = ['https://download.osgeo.org/proj/'] sources = [SOURCELOWER_TAR_GZ] builddependencies = [ ('pkg-config', '0.29.2'), ('binutils', '2.35'), ] dependencies = [ ('SQLite', '3.33.0'), ('LibTIFF', '4.1.0'), ('cURL', '7.72.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'