Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Updated from enchant-1.6.1-intel-2017a.eb
# Author: J. Sassmannshausen (Imperial College London/UK)

easyblock = 'ConfigureMake'

name = 'enchant-2'
version = '2.3.3'

homepage = 'https://github.com/AbiWord/enchant'
description = """Enchant aims to provide a simple but comprehensive abstraction for dealing
with different spell checking libraries in a consistent way. A client, such
as a text editor or word processor, need not know anything about a specific
spell-checker, and since all back-ends are plugins, new spell-checkers can
be added without needing any change to the program using Enchant."""

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

source_urls = ['https://github.com/AbiWord/enchant/releases/download/v%(version)s']
sources = ['enchant-%(version)s.tar.gz']
checksums = [
'3da12103f11cf49c3cf2fd2ce3017575c5321a489e5b9bfa81dd91ec413f3891'
]

builddependencies = [
('Autotools', '20210726'),
('binutils', '2.37'),
('M4', '1.4.19'),
]

preconfigopts = "autoreconf -vfi && "

dependencies = [
('hunspell', '1.7.1'),
('GLib', '2.69.1'),
]

buildopts = "LIBTOOL='libtool --tag=CC'"

sanity_check_commands = [
'enchant-2 -v',
'enchant-lsmod-2 -v',
]

sanity_check_paths = {
'files': ['bin/enchant-2', 'bin/enchant-lsmod-2',
'lib/libenchant-2.a', 'lib/libenchant-2.%s' % SHLIB_EXT],
'dirs': ['include/enchant-2', 'lib/enchant-2'],
}

moduleclass = 'tools'