Preliminary RPackage class (#2761)

This commit is contained in:
Adam J. Stewart
2017-01-07 18:28:52 -06:00
committed by Todd Gamblin
parent f379697985
commit daff3c0908
173 changed files with 238 additions and 1213 deletions

View File

@@ -25,7 +25,7 @@
from spack import *
class RLeaflet(Package):
class RLeaflet(RPackage):
"""Create and customize interactive maps using the 'Leaflet' JavaScript
library and the 'htmlwidgets' package. These maps can be used directly from
the R console, from 'RStudio', in Shiny apps and R Markdown documents."""
@@ -36,8 +36,6 @@ class RLeaflet(Package):
version('1.0.1', '7f3d8b17092604d87d4eeb579f73d5df')
extends('r')
depends_on('r-base64enc', type=nolink)
depends_on('r-htmlwidgets', type=nolink)
depends_on('r-htmltools', type=nolink)
@@ -48,7 +46,3 @@ class RLeaflet(Package):
depends_on('r-raster', type=nolink)
depends_on('r-scales', type=nolink)
depends_on('r-sp', type=nolink)
def install(self, spec, prefix):
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)