spack/var/spack/repos/builtin/packages/rdp-classifier/package.py
Todd Gamblin 62927654dd checksums: use sha256 checksums everywhere
We'd like to use a consistent checksum scheme everywhere so that we can:

    a) incorporate archive checksums into our specs and have a
       consistent hashing algorithm across all specs.

    b) index mirrors with a consistent type of checksum, and not one that
       is dependent on how spack packages are written.

- [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
2019-10-12 07:19:43 -07:00

27 lines
1.0 KiB
Python

# 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 RdpClassifier(Package):
"""The RDP Classifier is a naive Bayesian classifier that can rapidly and
accurately provides taxonomic assignments from domain to genus, with
confidence estimates for each assignment. """
homepage = "http://rdp.cme.msu.edu/"
url = "https://downloads.sourceforge.net/project/rdp-classifier/rdp-classifier/rdp_classifier_2.12.zip"
version('2.12', sha256='977896248189a1ce2146dd3a61d203c3c6bc9aa3982c60332d463832922f7d0a')
depends_on('java', type=('build', 'run'))
def install(self, spec, prefix):
mkdirp(prefix.bin)
install(join_path('dist', 'classifier.jar'), prefix.bin)
install_tree(join_path('dist', 'lib'), prefix.bin.lib)
install(join_path('lib', 'junit-4.8.2.jar'), prefix.bin.lib)
install_tree('src', prefix.src)