Skip to content
Snippets Groups Projects
Commit 83a8a8ed authored by becker33's avatar becker33 Committed by GitHub
Browse files

Merge pull request #1717 from alfredo-gimenez/features/sbt

Add sbt (scala build tool) package
parents d78d18c4 19102559
No related branches found
No related tags found
No related merge requests found
from spack import *
import shutil
class Sbt(Package):
"""Scala Build Tool"""
homepage = "http://http://www.scala-sbt.org"
url = "http://http://www.scala-sbt.org/download.html"
version('0.13.12', 'cec3071d46ef13334c8097cc3467ff28',
url='https://dl.bintray.com/sbt/native-packages/sbt/0.13.12/sbt-0.13.12.tgz')
depends_on('jdk')
def install(self, spec, prefix):
shutil.copytree('bin', join_path(prefix, 'bin'), symlinks=True)
shutil.copytree('conf', join_path(prefix, 'conf'), symlinks=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment