From ad9eca9f6af3738fff671eddba8e4bcdfb65e739 Mon Sep 17 00:00:00 2001 From: anselmicz Date: Sat, 1 Apr 2023 10:38:10 +0200 Subject: [PATCH] adding easyconfigs: fio-3.34-GCCcore-12.2.0.eb --- .../f/fio/fio-3.34-GCCcore-12.2.0.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/f/fio/fio-3.34-GCCcore-12.2.0.eb diff --git a/easybuild/easyconfigs/f/fio/fio-3.34-GCCcore-12.2.0.eb b/easybuild/easyconfigs/f/fio/fio-3.34-GCCcore-12.2.0.eb new file mode 100644 index 000000000000..0b7184963e51 --- /dev/null +++ b/easybuild/easyconfigs/f/fio/fio-3.34-GCCcore-12.2.0.eb @@ -0,0 +1,28 @@ +easyblock = 'ConfigureMake' + +name = 'fio' +version = '3.34' + +homepage = 'https://github.com/axboe/fio' +docurls = 'https://fio.readthedocs.io/en/latest/index.html' +description = 'Flexible I/O tester' + +toolchain = {'name': 'GCCcore', 'version': '12.2.0'} + +github_account = 'axboe' +source_urls = [GITHUB_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['42ea28c78d269c4cc111b7516213f4d4b32986797a710b0ff364232cc7a3a0b7'] + +builddependencies = [ + ('binutils', '2.39'), +] + +sanity_check_paths = { + 'files': ['bin/fio'], + 'dirs': ['bin', 'man', 'share'], +} + +sanity_check_commands = ['fio -h'] + +moduleclass = 'tools'