summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/rdptools/package.py
blob: a7a7042ebc1679f2b80f141643f75d66bc34eff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2022 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 Rdptools(MakefilePackage):
    """Collection of commonly used RDP Tools for easy building."""

    homepage = "https://github.com/rdpstaff/RDPTools"
    url      = "https://github.com/rdpstaff/RDPTools/archive/2.0.2.tar.gz"

    version('2.0.2', sha256='fc3d7f8129b45e602fc2c23e5e037a7f48c14d5a6b05c64f8c1d48e9767ac01d')

    # https://github.com/bioconda/bioconda-recipes/blob/master/recipes/rdptools/meta.yaml
    depends_on('java')
    depends_on('ant')
    depends_on('python')

    def install(self, spec, prefix):
        install_tree('.', prefix)