Last active
August 29, 2015 14:17
-
-
Save xguse/727239de4cb1c5e80ca3 to your computer and use it in GitHub Desktop.
git-2.3.4-goolf-1.4.10.GUS.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild | |
# | |
# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA | |
# Authors:: Fotis Georgatos <[email protected]> | |
# Authors:: Dmitri Gribenko <[email protected]> | |
# 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.3.4' | |
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': 'goolf', 'version': '1.4.10'} | |
# eg. https://www.kernel.org/pub/software/scm/git/git-2.3.4.tar.gz | |
sources = [SOURCELOWER_TAR_GZ] | |
source_urls = ['https://www.kernel.org/pub/software/scm/git/'] | |
dependencies = [ | |
('cURL', '7.29.0'), | |
('expat', '2.1.0'), | |
('gettext', '0.18.2'), | |
] | |
sanity_check_paths = { | |
'files': ['bin/git'], | |
'dirs': [], | |
} | |
# Work around git build system bug. If LIBS contains -lpthread, then configure | |
# will not append -lpthread to LDFLAGS, but Makefile ignores LIBS. | |
configopts = "--enable-pthreads='-lpthread'" | |
moduleclass = 'tools' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment