summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gapcloser/package.py
blob: 7d07c0885ccb507bfd7c13e8874855bf2aa71648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 Gapcloser(Package):
    """The GapCloser is designed to close the gaps emerging during the
    scaffolding process"""

    homepage = "https://sourceforge.net/projects/soapdenovo2/files/GapCloser/"
    url = "https://downloads.sourceforge.net/project/soapdenovo2/GapCloser/bin/r6/GapCloser-bin-v1.12-r6.tgz"

    version("1.12-r6", sha256="8ca1a7e521dabc551ab4436d2b6e32536df670fae1c0e0fcb9242ae3a53db579")

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install("GapCloser", prefix.bin)