diff options
author | Toyohisa Kameyama <kameyama@riken.jp> | 2019-10-09 10:48:37 +0900 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-08 20:48:37 -0500 |
commit | fdc91a17051918ffdda6619fee2d0240e5783474 (patch) | |
tree | 376284b8b2e51f1f7d60e83dcea3cf1c9d0f55f7 /var | |
parent | 2e4bcf223c7d1bf1184b85d94d8267a91d078354 (diff) | |
download | spack-fdc91a17051918ffdda6619fee2d0240e5783474.tar.gz spack-fdc91a17051918ffdda6619fee2d0240e5783474.tar.bz2 spack-fdc91a17051918ffdda6619fee2d0240e5783474.tar.xz spack-fdc91a17051918ffdda6619fee2d0240e5783474.zip |
tabix: add zlib dependency. (#13064)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/tabix/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tabix/package.py b/var/spack/repos/builtin/packages/tabix/package.py index 96cf6131c5..47208e6e7a 100644 --- a/var/spack/repos/builtin/packages/tabix/package.py +++ b/var/spack/repos/builtin/packages/tabix/package.py @@ -16,6 +16,7 @@ class Tabix(MakefilePackage): depends_on('perl', type=('build', 'run')) depends_on('python', type=('build', 'run')) + depends_on('zlib', type='link') def install(self, spec, prefix): mkdirp(prefix.bin) |