easyconfigs-it4i/u/UnZip/UnZip-6.0-GCCcore-14.2.0.eb
Lukas Krupcik c0a9ce6271 new file: a/Automake/Automake-1.16.5-GCCcore-14.2.0.eb
new file:   l/libevent/libevent-2.1.12-GCCcore-14.2.0.eb
	new file:   l/libfabric/libfabric-1.16.1-GCCcore-14.2.0.eb
	new file:   l/libffi/libffi-3.4.5-GCCcore-14.2.0.eb
	new file:   l/libpciaccess/libpciaccess-0.18.1-GCCcore-14.2.0.eb
	new file:   l/libreadline/libreadline-8.2-GCCcore-13.3.0.eb
	new file:   l/libreadline/libreadline-8.2-GCCcore-14.2.0.eb
	new file:   l/libtool/libtool-2.4.7-GCCcore-14.2.0.eb
	new file:   l/libxml2/libxml2-2.12.7-GCCcore-14.2.0.eb
	new file:   m/Meson/Meson-1.4.0-GCCcore-14.2.0.eb
	new file:   n/Ninja/Ninja-1.12.1-GCCcore-14.2.0.eb
	modified:   o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb
	new file:   p/PMIx/PMIx-5.0.2-GCCcore-14.2.0.eb
	new file:   p/Python/Python-3.12.3-GCCcore-14.2.0.eb
	new file:   s/SQLite/SQLite-3.45.3-GCCcore-14.2.0.eb
	new file:   t/Tcl/Tcl-8.6.14-GCCcore-14.2.0.eb
	new file:   u/UCC/UCC-1.3.0-GCCcore-14.2.0.eb
	new file:   u/UCX/UCX-1.16.0-GCCcore-14.2.0.eb
	new file:   u/UnZip/UnZip-6.0-GCCcore-14.2.0.eb
	new file:   x/xorg-macros/xorg-macros-1.20.1-GCCcore-14.2.0.eb
2024-10-18 12:15:07 +02:00

63 lines
1.8 KiB
Plaintext

# IT4Innovations
# LK 2024
easyblock = 'ConfigureMake'
name = 'UnZip'
version = '6.0'
homepage = 'http://www.info-zip.org/UnZip.html'
description = """UnZip is an extraction utility for archives compressed
in .zip format (also called "zipfiles"). Although highly compatible both
with PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP's
own Zip program, our primary objectives have been portability and
non-MSDOS functionality."""
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
source_urls = ['https://download.sourceforge.net/infozip']
sources = ['%(namelower)s%(version_major)s%(version_minor)s.tar.gz']
patches = [
'UnZip-%(version)s_various-security-and-other-fixes-from-Ubuntu.patch',
]
checksums = [
'036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37', # unzip60.tar.gz
# UnZip-6.0_various-security-and-other-fixes-from-Ubuntu.patch
'06b9307fd5aa018896bd4126818c00c1fd284a06cc3681cf0492f951ebb57ffe',
]
builddependencies = [
('binutils', '2.42'),
]
dependencies = [
('bzip2', '1.0.8'),
]
skipsteps = ['configure']
local_cf = ['$CFLAGS', '$CPPFLAGS', '-I.', '-DACORN_FTYPE_NFS', '-DWILD_STOP_AT_DIR', '-DLARGE_FILE_SUPPORT'
'-DUNICODE_SUPPORT', '-DUNICODE_WCHAR', '-DUTF8_MAYBE_NATIVE', '-DNO_LCHMOD', '-DDATE_FORMAT=DF_YMD',
'-DUSE_BZIP2', '-DIZ_HAVE_UXUIDGID', '-DNOMEMCPY', '-DNO_WORKING_ISPRINT']
buildopts = ' '.join([
"-f unix/Makefile",
'CC="$CC"',
'D_USE_BZ2=-DUSE_BZIP2',
'L_BZ2=-lbz2',
'LF2="$LDFLAGS"',
'CF="%s"' % ' '.join(local_cf),
'unzips',
])
installopts = '-f unix/Makefile prefix=%(installdir)s '
sanity_check_paths = {
'files': ['bin/unzip', 'bin/zipinfo'],
'dirs': ['man/man1']
}
sanity_check_commands = ["unzip -v"]
moduleclass = 'tools'