spack/var/spack/repos/builtin/packages/minced/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [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
2021-01-02 12:12:00 -08:00

29 lines
1.1 KiB
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 Minced(Package):
"""MinCED is a program to find Clustered Regularly Interspaced Short
Palindromic Repeats (CRISPRs) in full genomes or environmental datasets
such as metagenomes, in which sequence size can be anywhere from 100 to
800 bp."""
homepage = "https://github.com/ctSkennerton/minced"
url = "https://github.com/ctSkennerton/minced/archive/0.2.0.tar.gz"
version('0.3.2', sha256='334aee43292d0b657c4849f818ddfb3ac7811eb505502bf24a01d66719084b44')
version('0.2.0', sha256='e1ca61e0307e6a2a2480bc0a1291a2c677110f34c3247d4773fdba7e95a6b573')
version('0.1.6', sha256='035e343591b4595c571e17b0b3f526a01a23c3a47ebafb66f20ba667b29b3ed7')
depends_on('java', type=('build', 'run'))
def install(self, spec, prefix):
make()
mkdirp(prefix.bin)
install('minced', prefix.bin)
install('minced.jar', prefix.bin)