Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{tools}[GCCcore/12.2.0] fsm-lite v1.0, sdsl-lite v2.0.3 #20503

Merged
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
36 changes: 36 additions & 0 deletions easybuild/easyconfigs/f/fsm-lite/fsm-lite-1.0-GCCcore-12.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This easyconfig was created by the BEAR Software team at the University of Birmingham.
easyblock = "MakeCp"

name = 'fsm-lite'
version = '1.0'

homepage = "https://github.com/nvalimak/fsm-lite"
description = """A singe-core implemetation of frequency-based substring mining."""

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

source_urls = ['https://github.com/nvalimak/%(name)s/archive/']
sources = ['v%(version)s-stable.tar.gz']
checksums = ['f781a9fbab5265bd09b3b5b7e1cba904582ec201c3d30baed36e28a03de3ac61']

builddependencies = [
('CMake', '3.24.3'),
('binutils', '2.39'),
]

dependencies = [
('sdsl-lite', '2.0.3'),
]

prebuildopts = "sed -i '1s/.*/SDSL_INSTALL_PREFIX=${EBROOTSDSLMINLITE}/' Makefile && make depend &&"

files_to_copy = [(['fsm-lite'], 'bin')]

sanity_check_paths = {
'files': ['bin/fsm-lite'],
'dirs': [],
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@verdurin is it possible to add a sanity_check_commands item here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@smoors done


sanity_check_commands = ["fsm-lite --help 2>&1 | grep usage"]

moduleclass = 'tools'
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This easyconfig was created by the BEAR Software team at the University of Birmingham.
easyblock = "CMakeMake"

name = 'sdsl-lite'
version = '2.0.3'

homepage = "https://github.com/simongog/sdsl-lite"
description = """The Succinct Data Structure Library (SDSL) is a powerful and flexible C++11 library implementing
succinct data structures. In total, the library contains the highlights of 40 research publications. Succinct
data structures can represent an object (such as a bitvector or a tree) in space close to the information-theoretic
lower bound of the object while supporting operations of the original object efficiently. The theoretical time
complexity of an operation performed on the classical data structure and the equivalent succinct data structure
are (most of the time) identical."""

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

source_urls = ['https://github.com/simongog/%(name)s/archive/']
sources = ['v%(version)s.tar.gz']
checksums = ['08ece40ce44041906bfa425af81a20a8071d187285f674debd8816c2e3113c2f']

builddependencies = [
('CMake', '3.24.3'),
('binutils', '2.39'),
]

sanity_check_paths = {
'files': ['lib/libdivsufsort64.a', 'lib/libdivsufsort.a', 'lib/libsdsl.a', 'include/divsufsort64.h'],
'dirs': ['include/sdsl'],
}

moduleclass = 'tools'
Loading