Skip to content
Snippets Groups Projects
Commit e19d7b9a authored by Toyohisa Kameyama's avatar Toyohisa Kameyama Committed by Elizabeth Fischer
Browse files

exonerate use autotools. (#11805)

parent 1827b4c5
Branches
Tags
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -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): ...@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment