summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-biocstyle/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-biocstyle/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-biocstyle/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-biocstyle/package.py b/var/spack/repos/builtin/packages/r-biocstyle/package.py
new file mode 100644
index 0000000000..411b2549fa
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-biocstyle/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2018 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 RBiocstyle(RPackage):
+ """Provides standard formatting styles for Bioconductor PDF and HTML
+ documents. Package vignettes illustrate use and functionality."""
+
+ homepage = "https://www.bioconductor.org/packages/BiocStyle/"
+ git = "https://git.bioconductor.org/packages/BiocStyle.git"
+
+ version('2.4.1', commit='ef10764b68ac23a3a7a8ec3b6a6436187309c138')
+
+ depends_on('r-bookdown', type=('build', 'run'))
+ depends_on('r-knitr@1.12:', type=('build', 'run'))
+ depends_on('r-rmarkdown@1.2:', type=('build', 'run'))
+ depends_on('r-yaml', type=('build', 'run'))
+ depends_on('r@3.4.0:3.4.9', when='@2.4.1')