From 3ac430494fc0d8aa77fa3db6810f70948bb68851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Tue, 19 May 2020 10:26:12 +0200 Subject: [PATCH] new file: g/git-lfs/git-lfs-2.11.0.eb --- g/git-lfs/git-lfs-2.11.0.eb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 g/git-lfs/git-lfs-2.11.0.eb 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'