22 lines
739 B
Python
22 lines
739 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 RXml2(RPackage):
|
|
"""Work with XML files using a simple, consistent interface. Built on top
|
|
of the 'libxml2' C library."""
|
|
|
|
homepage = "https://cran.r-project.org/package=xml2"
|
|
url = "https://cran.r-project.org/src/contrib/xml2_1.1.1.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/xml2"
|
|
|
|
version('1.1.1', '768f7edc39c4baab6b6b9e7c7ec79fee')
|
|
|
|
depends_on('r-rcpp', type=('build', 'run'))
|
|
depends_on('r-bh', type=('build', 'run'))
|
|
depends_on('libxml2')
|