summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bamdst/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/bamdst/package.py')
-rw-r--r--var/spack/repos/builtin/packages/bamdst/package.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/bamdst/package.py b/var/spack/repos/builtin/packages/bamdst/package.py
index 0dfae3f1c6..05aef2935f 100644
--- a/var/spack/repos/builtin/packages/bamdst/package.py
+++ b/var/spack/repos/builtin/packages/bamdst/package.py
@@ -10,18 +10,18 @@ class Bamdst(MakefilePackage):
"""Bamdst is a a lightweight bam file depth statistical tool."""
homepage = "https://github.com/shiquan/bamdst"
- git = "https://github.com/shiquan/bamdst.git"
+ git = "https://github.com/shiquan/bamdst.git"
- version('master', git='https://github.com/shiquan/bamdst.git')
+ version("master", git="https://github.com/shiquan/bamdst.git")
- depends_on('zlib')
+ depends_on("zlib")
parallel = False
def edit(self, spec, prefix):
- makefile = FileFilter('Makefile')
- makefile.filter('CC= .*', 'CC = cc')
+ makefile = FileFilter("Makefile")
+ makefile.filter("CC= .*", "CC = cc")
def install(self, spec, prefix):
mkdir(prefix.bin)
- install('bamdst', prefix.bin)
+ install("bamdst", prefix.bin)