spack/var/spack/repos/builtin/packages/rdptools/package.py
Adam J. Stewart e13bc0212c
Add py-pipits 2.4 (#12074)
* Add py-pipits 2.4

* Flake8 fix
2019-07-30 17:10:57 -05:00

24 lines
780 B
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 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)