summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/vmatch/package.py
blob: 4f48173d84098800b4ea06e2fb64dbe8739977ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2023 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.package import *


class Vmatch(Package):
    """Vmatch is a versatile software tool for efficiently solving large scale
    sequence matching tasks"""

    homepage = "http://www.vmatch.de/"
    url = "http://www.vmatch.de/distributions/vmatch-2.3.0-Linux_x86_64-64bit.tar.gz"

    version("2.3.0", sha256="5e18d0dddf04e86dad193fcdde6e48f3901365932634125602d8808f35acf979")

    def install(self, spec, prefix):
        install_tree(self.stage.source_path, prefix.bin)