Skip to content

Commit

Permalink
Merge pull request easybuilders#20063 from smoors/20240307102149_new_…
Browse files Browse the repository at this point in the history
…pr_GUIDANCE202

fix GUIDANCE installation
  • Loading branch information
Micket authored Mar 10, 2024
2 parents 3223f9f + 036a400 commit fac68ed
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion easybuild/easyconfigs/g/GUIDANCE/GUIDANCE-2.02-GCC-12.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,14 @@ dependencies = [
('PAGAN2', '1.53_20230824', '-linux64', SYSTEM),
]

files_to_copy = ['programs', 'www']

_bins = ['isEqualTree', 'msa_set_score', 'removeTaxa', 'semphy']

files_to_copy = [(['programs/%s/%s' % (x, x) for x in _bins], 'bin'), 'www']
postinstallcmds = [
'cd %(installdir)s && mkdir bin && cd bin'
' && ' + ' && '.join(['ln -s ../programs/%s/%s' % (x, x) for x in _bins])
]

sanity_check_paths = {
'files': ['bin/%s' % x for x in _bins],
Expand Down

0 comments on commit fac68ed

Please sign in to comment.