diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/tophat/package.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/tophat/package.py b/var/spack/repos/builtin/packages/tophat/package.py index 753e1590d4..2234e9c0a0 100644 --- a/var/spack/repos/builtin/packages/tophat/package.py +++ b/var/spack/repos/builtin/packages/tophat/package.py @@ -31,10 +31,15 @@ class Tophat(AutotoolsPackage): homepage = "http://ccb.jhu.edu/software/tophat/index.shtml" url = "https://github.com/infphilo/tophat/archive/v2.1.1.tar.gz" + version('2.1.2', 'db844fd7f53c519e716cd6222e6195b2') version('2.1.1', 'ffd18de2f893a95eb7e9d0c5283d241f') depends_on('autoconf', type='build') - depends_on('automake', type='build') + # 2.1.1 only builds with automake@1.15.1. There's a patch here: + # https://github.com/spack/spack/pull/8244, which was incorporated + # upstream in 2.1.2, which is known to build with 1.16.1 and 1.15.1. + depends_on('automake', type='build') + depends_on('automake@1.15.1', when='@:2.1.1', type='build') depends_on('libtool', type='build') depends_on('m4', type='build') |