summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/bpp-core/package.py
blob: cf026854390e349593b1678efe8a3a1aa773f77d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 BppCore(CMakePackage):
    """Bio++ core library."""

    homepage = "http://biopp.univ-montp2.fr/wiki/index.php/Installation"
    url      = "http://biopp.univ-montp2.fr/repos/sources/bpp-core-2.2.0.tar.gz"

    version('2.2.0', '5789ed2ae8687d13664140cd77203477')

    depends_on('cmake@2.6:', type='build')

    def cmake_args(self):
        return ['-DBUILD_TESTING=FALSE']