mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 19:28:06 +01:00

modified: g/git/git-2.11.0-GNU-4.9.3-2.25.eb new file: g/git/git-2.12.2.eb modified: p/Perl/Perl-5.24.0-GCC-5.4.0-bare.eb new file: p/Perl/Perl-5.24.1.eb
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
##
|
|
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
|
|
#
|
|
# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
|
|
# Authors:: Fotis Georgatos <fotis@cern.ch>
|
|
# Authors:: Dmitri Gribenko <gribozavr@gmail.com>
|
|
# License:: MIT/GPL
|
|
# $Id$
|
|
#
|
|
# This work implements a part of the HPCBIOS project and is a component of the policy:
|
|
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html
|
|
##
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'git'
|
|
version = '2.11.0'
|
|
|
|
homepage = 'http://git-scm.com/'
|
|
description = """Git is a free and open source distributed version control system designed
|
|
to handle everything from small to very large projects with speed and efficiency."""
|
|
|
|
toolchain = {'name': 'GNU', 'version': '4.9.3-2.25'}
|
|
|
|
sources = ['v%(version)s.tar.gz']
|
|
source_urls = ['https://github.com/git/git/archive']
|
|
|
|
builddependencies = [('Autoconf', '2.69')]
|
|
|
|
dependencies = [
|
|
('cURL', '7.37.1', '', ('foss', '2015g')),
|
|
('expat', '2.1.0', '', ('foss', '2015g')),
|
|
('gettext', '0.19.2', '', ('foss', '2015g')),
|
|
('Perl', '5.20.2', '-bare', ('GNU', '4.9.3-2.25')),
|
|
]
|
|
|
|
preconfigopts = 'make configure && '
|
|
|
|
# Work around git build system bug. If LIBS contains -lpthread, then configure
|
|
# will not append -lpthread to LDFLAGS, but Makefile ignores LIBS.
|
|
configopts = "--with-perl=${EBROOTPERL}/bin/perl --enable-pthreads='-lpthread'"
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/git'],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'tools'
|