-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathANTLR-2.7.7-GCCcore-14.2.0.eb
More file actions
35 lines (25 loc) · 1.06 KB
/
ANTLR-2.7.7-GCCcore-14.2.0.eb
File metadata and controls
35 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
easyblock = 'ConfigureMake'
name = 'ANTLR'
version = '2.7.7'
homepage = 'https://www.antlr2.org/'
description = """ANTLR, ANother Tool for Language Recognition, (formerly PCCTS)
is a language tool that provides a framework for constructing recognizers,
compilers, and translators from grammatical descriptions containing
Java, C#, C++, or Python actions."""
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
source_urls = ['https://www.antlr2.org/download/']
sources = [SOURCELOWER_TAR_GZ]
patches = ['%(name)s-%(version)s_includes.patch']
checksums = [
'853aeb021aef7586bda29e74a6b03006bcb565a755c86b66032d8ec31b67dbb9', # antlr-2.7.7.tar.gz
'd167d3248a03301bc93efcb37d5df959aae6794968e42231af0b0dd26d6a2e66', # ANTLR-2.7.7_includes.patch
]
builddependencies = [('binutils', '2.42')]
dependencies = [('Java', '21', '', SYSTEM)]
configopts = '--disable-examples --disable-csharp --disable-python'
sanity_check_paths = {
'files': ['bin/antlr', 'bin/antlr-config'],
'dirs': ['include'],
}
sanity_check_commands = ["antlr --help"]
moduleclass = 'tools'