summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDouglas Duckworth <quackmaster@protonmail.com>2017-05-24 11:25:31 -0400
committerAdam J. Stewart <ajstewart426@gmail.com>2017-05-24 10:25:31 -0500
commita0e7169df6328b4fea4cd2500fa2f959fad537d6 (patch)
tree60da69d03c805b4c3407807147844544de28c72a /var
parent315bda3487ca06bdd872efec6349920289bfad64 (diff)
downloadspack-a0e7169df6328b4fea4cd2500fa2f959fad537d6.tar.gz
spack-a0e7169df6328b4fea4cd2500fa2f959fad537d6.tar.bz2
spack-a0e7169df6328b4fea4cd2500fa2f959fad537d6.tar.xz
spack-a0e7169df6328b4fea4cd2500fa2f959fad537d6.zip
added new R package - r-rgl (#4335)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-rgl/package.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-rgl/package.py b/var/spack/repos/builtin/packages/r-rgl/package.py
new file mode 100644
index 0000000000..a4b912a6d5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-rgl/package.py
@@ -0,0 +1,54 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class RRgl(RPackage):
+ """Provides medium to high level functions for 3D interactive graphics,
+ including functions modelled on base graphics (plot3d(), etc.) as well as
+ functions for constructing representations of geometric objects (cube3d(),
+ etc.). Output may be on screen using OpenGL, or to various standard
+ 3D file formats including WebGL, PLY, OBJ, STL as well as 2D image formats,
+ including PNG, Postscript, SVG, PGF."""
+
+ homepage = "https://r-forge.r-project.org/projects/rgl"
+ url = "https://cloud.r-project.org/src/contrib/rgl_0.98.1.tar.gz"
+
+ list_url = 'https://cloud.r-project.org/src/contrib/Archive/rgl'
+
+ version('0.98.1', 'bd69e1d33f1590feb4b6dc080b133e5b')
+
+ depends_on('r@3.2:3.9')
+ depends_on('zlib', type=('link'))
+ depends_on('libpng', type=('link'))
+ depends_on('freetype', type=('link'))
+ depends_on('mesa', type=('link'))
+ depends_on('mesa-glu', type=('link'))
+ depends_on('r-htmlwidgets', type=('build', 'run'))
+ depends_on('r-htmltools', type=('build', 'run'))
+ depends_on('r-knitr', type=('build', 'run'))
+ depends_on('r-jsonlite', type=('build', 'run'))
+ depends_on('r-shiny', type=('build', 'run'))
+ depends_on('r-magrittr', type=('build', 'run'))