# 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 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)