diff --git a/g/git-lfs/git-lfs-2.11.0.eb b/g/git-lfs/git-lfs-2.11.0.eb new file mode 100644 index 00000000..c20bbd71 --- /dev/null +++ b/g/git-lfs/git-lfs-2.11.0.eb @@ -0,0 +1,29 @@ +# JH 2020 + +easyblock = 'MakeCp' + +name = 'git-lfs' +version = '2.11.0' + +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""" + +toolchain = SYSTEM + +source_urls = ['https://github.com/git-lfs/git-lfs/archive/'] +sources = ['v%(version)s.tar.gz'] + +builddependencies = [('Go', '1.13.5')] + +files_to_copy = [(['bin/%(name)s'], 'bin')] + +sanity_check_paths = { + 'files': ['bin/git-lfs'], + 'dirs': [], +} + +sanity_check_commands = [('git-lfs', '--version')] + +moduleclass = 'tools'