git-2.13.1-intel-2018.eb 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. easyblock = 'ConfigureMake'
  2. name = 'git'
  3. version = '2.13.1'
  4. homepage = 'http://git-scm.com/'
  5. description = """Git is a free and open source distributed version control system designed
  6. to handle everything from small to very large projects with speed and efficiency."""
  7. toolchain = {'name': 'intel', 'version': '2018'}
  8. sources = ['v%(version)s.tar.gz']
  9. source_urls = ['https://github.com/git/git/archive']
  10. checksums = ['c0e3fe359f715cb7dfc3ac63fa6e733a']
  11. builddependencies = [
  12. ('Autoconf', '2.69'),
  13. ]
  14. dependencies = [
  15. ('cURL', '7.58.0'),
  16. ('expat', '2.2.4'),
  17. ('gettext', '0.19.8.1'),
  18. ('Perl', '5.24.0'),
  19. ]
  20. preconfigopts = 'make configure && '
  21. # Work around git build system bug. If LIBS contains -lpthread, then configure
  22. # will not append -lpthread to LDFLAGS, but Makefile ignores LIBS.
  23. configopts = "--with-perl=${EBROOTPERL}/bin/perl --enable-pthreads='-lpthread'"
  24. sanity_check_paths = {
  25. 'files': ['bin/git'],
  26. 'dirs': [],
  27. }
  28. moduleclass = 'tools'