
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
22 lines
654 B
Python
22 lines
654 B
Python
# Copyright 2013-2021 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 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"
|
|
|
|
version('0.3', sha256='5928f727feebd0d1bcdbee0e631ba06fbe9ce88328bd58b6c8bf4e54cc742ac3')
|
|
|
|
depends_on('zlib')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
install('NGmerge', prefix.bin)
|