From bace5daed2dce5f3cfda150121371bcc97b46d77 Mon Sep 17 00:00:00 2001 From: Stefan Wolfsheimer Date: Wed, 27 Nov 2024 12:41:20 +0100 Subject: [PATCH] adding easyconfigs: time-1.9-GCCcore-13.3.0.eb --- .../t/time/time-1.9-GCCcore-13.3.0.eb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 easybuild/easyconfigs/t/time/time-1.9-GCCcore-13.3.0.eb diff --git a/easybuild/easyconfigs/t/time/time-1.9-GCCcore-13.3.0.eb b/easybuild/easyconfigs/t/time/time-1.9-GCCcore-13.3.0.eb new file mode 100644 index 00000000000..acc1705405e --- /dev/null +++ b/easybuild/easyconfigs/t/time/time-1.9-GCCcore-13.3.0.eb @@ -0,0 +1,27 @@ +easyblock = 'ConfigureMake' + +name = 'time' +version = '1.9' + +homepage = 'https://www.gnu.org/software/time/' +description = """The `time' command runs another program, then displays information about the resources used by that + program, collected by the system while the program was running.""" + +toolchain = {'name': 'GCCcore', 'version': '13.3.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['fbacf0c81e62429df3e33bda4cee38756604f18e01d977338e23306a3e3b521e'] + +builddependencies = [('binutils', '2.42')] + +postinstallcmds = ["ln -s %(installdir)s/bin/%(name)s %(installdir)s/bin/gtime"] + +sanity_check_paths = { + 'files': ['bin/gtime', 'bin/%(name)s'], + 'dirs': [], +} + +sanity_check_commands = ["time echo test"] + +moduleclass = 'tools'