libtirpc-1.2.6-GCCcore-10.2.0.eb 718 B

12345678910111213141516171819202122232425262728
  1. easyblock = 'ConfigureMake'
  2. name = 'libtirpc'
  3. version = '1.2.6'
  4. homepage = 'https://sourceforge.net/projects/libtirpc/'
  5. description = "Libtirpc is a port of Suns Transport-Independent RPC library to Linux."
  6. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  7. source_urls = [SOURCEFORGE_SOURCE]
  8. sources = [SOURCE_TAR_BZ2]
  9. checksums = ['4278e9a5181d5af9cd7885322fdecebc444f9a3da87c526e7d47f7a12a37d1cc']
  10. configopts = '--enable-static --enable-shared --disable-gssapi'
  11. builddependencies = [
  12. ('binutils', '2.35')
  13. ]
  14. sanity_check_paths = {
  15. 'files': ['lib/libtirpc.%s' % (x,) for x in ['a', SHLIB_EXT]],
  16. 'dirs': ['include/tirpc', 'lib'],
  17. }
  18. modextrapaths = {'CPATH': 'include/tirpc'}
  19. moduleclass = 'lib'