mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
36 lines
979 B
Plaintext
36 lines
979 B
Plaintext
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
|
|
# Author: Pablo Escobar Lopez
|
|
# sciCORE - University of Basel
|
|
# SIB Swiss Institute of Bioinformatics
|
|
|
|
easyblock = "Tarball"
|
|
|
|
name = 'git-lfs'
|
|
version = '1.1.1'
|
|
|
|
homepage = 'https://git-lfs.github.com/'
|
|
description = """Git Large File Storage (LFS) replaces large files such as audio samples, videos,
|
|
datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server
|
|
like GitHub.com or GitHub Enterprise."""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
source_urls = [
|
|
'https://github.com/github/git-lfs/releases/download/v%(version)s/']
|
|
sources = ['%(name)s-linux-amd64-%(version)s.tar.gz']
|
|
|
|
sanity_check_paths = {
|
|
'files': ["git-lfs"],
|
|
'dirs': [""]
|
|
}
|
|
|
|
# add the installation dir to PATH
|
|
modextrapaths = {
|
|
'PATH': '',
|
|
}
|
|
|
|
# remove exec permission for the provided installation script
|
|
postinstallcmds = ["chmod og-x %(installdir)s/install.sh"]
|
|
|
|
moduleclass = 'tools'
|