From d65ee414103b3c2f883b158c089136ed8bda1998 Mon Sep 17 00:00:00 2001 From: Pavel Holba Date: Thu, 31 Oct 2024 10:06:07 +0100 Subject: [PATCH] new file: s/squashfuse/squashfuse-0.5.2.eb --- s/squashfuse/squashfuse-0.5.2.eb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 s/squashfuse/squashfuse-0.5.2.eb diff --git a/s/squashfuse/squashfuse-0.5.2.eb b/s/squashfuse/squashfuse-0.5.2.eb new file mode 100644 index 00000000..e2682fd4 --- /dev/null +++ b/s/squashfuse/squashfuse-0.5.2.eb @@ -0,0 +1,27 @@ +# IT4Innovations +# PH 2024 + +easyblock = 'ConfigureMake' + +name = 'squashfuse' +version = '0.5.2' + +homepage = 'https://github.com/vasi/squashfuse' +description = """Squashfuse lets you mount SquashFS archives in user-space. It supports almost +all features of the SquashFS format, yet is still fast and memory-efficient. So +that everyone can use it, squashfuse supports many different operating systems +and is available under a permissing license.""" + +source_urls = [f'https://github.com/vasi/{name}/releases/download/{version}'] +sources = [f'{name}-{version}.tar.gz'] +checksums = ['54e4baaa20796e86a214a1f62bab07c7c361fb7a598375576d585712691178f5'] + +toolchain = {'name': 'GCC', 'version': '12.3.0'} + +dependencies = [ + ('FUSE', '3.16.2'), + ('zlib', '1.2.13') +] + + +moduleclass = 'tools'