spack/var/spack/repos/builtin/packages/ngmerge/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

24 lines
681 B
Python

# 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 Ngmerge(MakefilePackage):
"""Merging paired-end reads and removing adapters."""
homepage = "https://github.com/jsh58/NGmerge"
url = "https://github.com/jsh58/NGmerge/archive/v0.3.tar.gz"
license("MIT")
version("0.3", sha256="5928f727feebd0d1bcdbee0e631ba06fbe9ce88328bd58b6c8bf4e54cc742ac3")
depends_on("zlib-api")
def install(self, spec, prefix):
mkdirp(prefix.bin)
install("NGmerge", prefix.bin)