summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gapcloser/package.py
blob: 99e7ec658424c79b36ad1568a591dbcabfc499b5 (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 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)