Skip to content
Snippets Groups Projects
Commit 86dcfb1e authored by Ian Lee's avatar Ian Lee
Browse files

Updated rstudio package to use QT5.4 and cmake build

parent 382cd680
No related tags found
No related merge requests found
...@@ -44,10 +44,16 @@ class Rstudio(Package): ...@@ -44,10 +44,16 @@ class Rstudio(Package):
# Concrete dependencies # Concrete dependencies
depends_on('R') depends_on('R')
depends_on('boost') depends_on('boost')
depends_on('qt@4.8.6') depends_on('qt@5.4.0')
def install(self, spec, prefix): def install(self, spec, prefix):
configure(*configure_args) with working_dir('spack-build', create=True):
make() cmake_args = [
make('install') '..',
'-DRSTUDIO_TARGET=Desktop',
'-DCMAKE_BUILD_TYPE=Release',
]
cmake(*cmake_args)
make()
make('install')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment