## # 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 = '5.2.0' homepage = 'http://trac.osgeo.org/proj/' description = """Program proj is a standard Unix filter function which converts geographic longitude and latitude coordinates into cartesian coordinates""" toolchain = {'name': 'GCCcore', 'version': '8.2.0'} toolchainopts = {'pic': True} source_urls = ['http://download.osgeo.org/proj/'] sources = [SOURCELOWER_TAR_GZ] builddependencies = [ ('pkg-config', '0.29.2'), ('binutils', '2.31.1'), ] dependencies = [('SQLite', '3.27.2')] sanity_check_paths = { 'files': ['bin/cct', 'bin/cs2cs', 'bin/geod', 'bin/gie', 'bin/proj', 'bin/nad2bin', 'lib/libproj.a', 'lib/libproj.%s' % SHLIB_EXT], 'dirs': ['include'], } moduleclass = 'lib'