Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
25 changes: 25 additions & 0 deletions easybuild/easyconfigs/g/gtest/gtest-1.8.1-GCCcore-8.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
easyblock = "CMakeMake"

name = 'gtest'
version = '1.8.1'

homepage = 'https://github.com/google/googletest'
description = "Google's framework for writing C++ tests on a variety of platforms"

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

source_urls = ['https://github.com/google/googletest/archive/']
sources = ['release-%(version)s.tar.gz']
checksums = ['9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c']

builddependencies = [
('CMake', '3.15.3'),
('binutils', '2.32'),
]

sanity_check_paths = {
'files': ['lib/libgtest.a', 'lib/libgmock.a'],
'dirs': ['include'],
}

moduleclass = 'devel'
56 changes: 56 additions & 0 deletions easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-0.9.0-foss-2019b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
easyblock = 'CMakeMakeCp'

name = 'RAxML-NG'
version = '0.9.0'

homepage = "https://github.com/amkozlov/raxml-ng"
description = """RAxML-NG is a phylogenetic tree inference tool which
uses maximum-likelihood (ML) optimality criterion. Its search heuristic
is based on iteratively performing a series of Subtree Pruning and Regrafting
(SPR) moves, which allows to quickly navigate to the best-known ML tree."""

toolchain = {'name': 'foss', 'version': '2019b'}

sources = [{
'filename': 'raxml-ng-%(version)s.tar.gz',
'git_config': {
'url': 'https://github.com/amkozlov',
'repo_name': 'raxml-ng',
'tag': '0.9.0',
'recursive': True,
},
}]
checksums = [
'4cfaff3d474ea31a6fcc9968b18730c69171f925403a9479735d2cd928115861'
]

build_type = 'Release'

builddependencies = [
('binutils', '2.32'),
('CMake', '3.15.3'),
('gtest', '1.8.1'),
]

dependencies = [
('flex', '2.6.4'),
('Bison', '3.3.2'),
('GMP', '6.1.2'),
('OpenMPI', '3.1.4'),
]

configopts = '-DUSE_MPI=ON '
configopts += '-DUSE_GMP=ON '

files_to_copy = [
(["bin/raxml-ng-mpi"], "bin"),
]

sanity_check_paths = {
'files': ['bin/raxml-ng-mpi'],
'dirs': [],
}

separate_build_dir = True

moduleclass = 'bio'