Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions easybuild/easyconfigs/d/Doxygen/Doxygen-1.17.0-GCCcore-15.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
easyblock = 'CMakeMake'

name = 'Doxygen'
version = '1.17.0'

homepage = 'https://www.doxygen.nl'
description = """
Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some
extent D.
"""

toolchain = {'name': 'GCCcore', 'version': '15.2.0'}

source_urls = ['https://www.doxygen.nl/files/']
sources = ['%(namelower)s-%(version)s.src.tar.gz']
checksums = ['fa4c3dd78785abc11ccc992bc9c01e7a8c3120fe14b8a8dfd7cefa7014530814']

builddependencies = [
('binutils', '2.45'),
('Bison', '3.8.2'),
('CMake', '4.2.1'),
('flex', '2.6.4'),
('pkgconf', '2.5.1'),
('Python', '3.14.2'),
]

dependencies = [
('libiconv', '1.18'),
]

configopts = "-DICONV_DIR=$EBROOTLIBICONV -DICONV_IN_GLIBC=OFF"

sanity_check_paths = {
'files': ["bin/doxygen"],
'dirs': [],
}

sanity_check_commands = ["doxygen --help"]

moduleclass = 'devel'
37 changes: 37 additions & 0 deletions easybuild/easyconfigs/i/intltool/intltool-0.51.0-GCCcore-15.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
easyblock = 'ConfigureMake'

name = 'intltool'
version = '0.51.0'

homepage = 'https://freedesktop.org/wiki/Software/intltool/'
description = """intltool is a set of tools to centralize translation of
many different file formats using GNU gettext-compatible PO files."""

toolchain = {'name': 'GCCcore', 'version': '15.2.0'}

source_urls = ['https://launchpad.net/intltool/trunk/%(version)s/+download/']
sources = [SOURCE_TAR_GZ]
patches = ['intltool-%(version)s_fix-Perl-compat.patch']
checksums = [
{'intltool-0.51.0.tar.gz': '67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334e959cd'},
{'intltool-0.51.0_fix-Perl-compat.patch': 'e839f7228b2b92301831bca88ed0bc7bce5dbf862568f1644642988204903db6'},
]

builddependencies = [
('binutils', '2.45'),
]

dependencies = [
('Perl-bundle-CPAN', '5.42.0'),
]

fix_perl_shebang_for = ['bin/intltool-*']

sanity_check_paths = {
'files': ['bin/intltool%s' % x for x in ['-extract', '-merge', '-prepare', '-update', 'ize']],
'dirs': []
}

sanity_check_commands = ["intltool-merge --help"]

moduleclass = 'devel'
Loading