exonerate use autotools. (#11805)

This commit is contained in:
Toyohisa Kameyama 2019-06-21 20:55:29 +09:00 committed by Elizabeth Fischer
parent 1827b4c5cb
commit e19d7b9a49

View File

@ -6,7 +6,7 @@
from spack import * from spack import *
class Exonerate(Package): class Exonerate(AutotoolsPackage):
"""Pairwise sequence alignment of DNA and proteins""" """Pairwise sequence alignment of DNA and proteins"""
homepage = "http://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate" homepage = "http://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate"
@ -19,8 +19,10 @@ class Exonerate(Package):
parallel = False parallel = False
def install(self, spec, prefix): def configure_args(self):
configure('--prefix={0}'.format(prefix), '--disable-debug', args = []
'--disable-dependency-tracking')
make() args.append('--disable-debug')
make('install') args.append('--disable-dependency-tracking')
return args