diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/aegean/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/aegean/package.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/aegean/package.py b/var/spack/repos/builtin/packages/aegean/package.py index 921c20cb1b..ee15d44091 100644 --- a/var/spack/repos/builtin/packages/aegean/package.py +++ b/var/spack/repos/builtin/packages/aegean/package.py @@ -8,20 +8,20 @@ from spack.package import * class Aegean(MakefilePackage): """The AEGeAn Toolkit is designed for the Analysis and Evaluation of - Genome Annotations. The toolkit includes a variety of analysis programs - as well as a C library whose API provides access to AEGeAn's core - functions and data structures.""" + Genome Annotations. The toolkit includes a variety of analysis programs + as well as a C library whose API provides access to AEGeAn's core + functions and data structures.""" homepage = "https://brendelgroup.github.io/AEGeAn/" - url = "https://github.com/BrendelGroup/AEGeAn/archive/v0.15.2.tar.gz" + url = "https://github.com/BrendelGroup/AEGeAn/archive/v0.15.2.tar.gz" - version('0.15.2', sha256='734c9dd23ab3415c3966083bfde5fb72c81e6ace84e08ee3fe0d4c338331d975') + version("0.15.2", sha256="734c9dd23ab3415c3966083bfde5fb72c81e6ace84e08ee3fe0d4c338331d975") - depends_on('genometools') + depends_on("genometools") def edit(self, spec, prefix): - makefile = FileFilter('Makefile') - if spec.target.family == 'aarch64': - makefile.filter('-m64', '') + makefile = FileFilter("Makefile") + if spec.target.family == "aarch64": + makefile.filter("-m64", "") - makefile.filter('/usr/local', prefix) + makefile.filter("/usr/local", prefix) |