forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathctffind-4.1.14-fosscuda-2019b.eb
More file actions
48 lines (38 loc) · 1.31 KB
/
ctffind-4.1.14-fosscuda-2019b.eb
File metadata and controls
48 lines (38 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
# Author: Pablo Escobar Lopez
# sciCORE - University of Basel
# SIB Swiss Institute of Bioinformatics
#
# Author: Ake Sandgren, HPC2N, Umea University
easyblock = 'ConfigureMake'
name = 'ctffind'
version = '4.1.14'
homepage = 'https://grigoriefflab.umassmed.edu/ctffind4'
description = """Program for finding CTFs of electron micrographs."""
toolchain = {'name': 'fosscuda', 'version': '2019b'}
toolchainopts = {'openmp': True}
source_urls = ['https://grigoriefflab.umassmed.edu/sites/default/files/']
sources = [SOURCELOWER_TAR_GZ]
patches = [
'%(name)s-%(version)s_asm-fix.patch',
'%(name)s-%(version)s_void-functions.patch'
]
checksums = [
'db17b2ebeb3c3b2b3764e42b820cd50d19ccccf6956c64257bfe5d5ba6b40cb5', # ctffind-4.1.14.tar.gz
'e6d468b3f1569e2d42e077573529dbc3035a03715c436d2349ccaaab63b64f28', # ctffind-4.1.14_asm-fix.patch
'0a578328062881d86b10585f1b0efa81b7a1826baf3e7bcc5c749bba73e96d10', # ctffind-4.1.14_void-functions.patch
]
dependencies = [
('zlib', '1.2.11'),
('libjpeg-turbo', '2.0.3'),
('LibTIFF', '4.0.10'),
('GSL', '2.6'),
('wxWidgets', '3.1.3'),
]
configopts = '--enable-openmp '
parallel = 1
sanity_check_paths = {
'files': ['bin/ctffind'],
'dirs': [],
}
moduleclass = 'bio'