homebrew-core/Formula/sbt.rb
Ivan Porto Carrero cbc6f6c6ad sbt 0.11.3
Closes Homebrew/homebrew#12117.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-05-07 06:35:20 -07:00

27 lines
748 B
Ruby

require 'formula'
class Sbt < Formula
url "http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/0.11.3/sbt-launch.jar"
homepage 'http://github.com/harrah/xsbt/'
version '0.11.3'
md5 '653cc42660766e3e046570ec1a94c0c7'
def install
(bin+'sbt').write <<-EOS.undent
#!/bin/sh
test -f ~/.sbtconfig && . ~/.sbtconfig
exec java -Xmx512M ${SBT_OPTS} -jar #{libexec}/sbt-launch.jar "$@"
EOS
libexec.install Dir['*']
end
def caveats; <<-EOS.undent
You can use $SBT_OPTS to pass additional JVM options to SBT.
For convenience, this can specified in `~/.sbtconfig`.
For example:
SBT_OPTS="-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M"
EOS
end
end