summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/vmatch/package.py
blob: 62b38a8667abf9799c911375f4eca5f294c20e2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2018 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 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', '592a4f941239494d892f3c6ff21a1423')

    def url_for_version(self, version):
        url = 'http://www.vmatch.de/distributions/vmatch-{0}-Linux_x86_64-64bit.tar.gz'
        return url.format(version)

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