
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
class Seqan(CMakePackage):
|
|
"""SeqAn is an open source C++ library of efficient algorithms and data
|
|
structures for the analysis of sequences with the focus on biological data.
|
|
Our library applies a unique generic design that guarantees high
|
|
performance, generality, extensibility, and integration with other
|
|
libraries. SeqAn is easy to use and simplifies the development of new
|
|
software tools with a minimal loss of performance"""
|
|
|
|
homepage = "https://www.seqan.de"
|
|
url = "https://github.com/seqan/seqan/archive/seqan-v2.4.0.tar.gz"
|
|
|
|
version('2.4.0', sha256='d7084d17729214003e84818e0280a16f223c8f1c6a30eeef040c27e0c0047bd7')
|
|
|
|
depends_on('cmake@3.4.0:', type='build')
|
|
depends_on('python@2.7.0:', type='build')
|
|
depends_on('py-nose', type='build')
|
|
depends_on('py-sphinx', type='build')
|
|
depends_on('boost', type=('build', 'link'))
|
|
depends_on('zlib', type=('build', 'link'))
|
|
depends_on('bzip2', type=('build', 'link'))
|
|
|
|
conflicts('%intel@:16.0.4')
|
|
conflicts('%gcc@:4.9.4')
|
|
conflicts('%llvm@:3.5.1')
|