2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-11 21:32:10 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sbt < Formula
|
2012-05-07 08:04:56 +00:00
|
|
|
url "http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/0.11.3/sbt-launch.jar"
|
2011-06-04 03:03:21 +00:00
|
|
|
homepage 'http://github.com/harrah/xsbt/'
|
2012-05-07 08:04:56 +00:00
|
|
|
version '0.11.3'
|
|
|
|
md5 '653cc42660766e3e046570ec1a94c0c7'
|
2009-09-30 15:18:16 +00:00
|
|
|
|
2009-09-11 21:32:10 +00:00
|
|
|
def install
|
2010-12-31 07:33:59 +00:00
|
|
|
(bin+'sbt').write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
2011-06-04 03:03:21 +00:00
|
|
|
test -f ~/.sbtconfig && . ~/.sbtconfig
|
|
|
|
exec java -Xmx512M ${SBT_OPTS} -jar #{libexec}/sbt-launch.jar "$@"
|
2010-12-31 07:33:59 +00:00
|
|
|
EOS
|
2009-09-11 21:32:10 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
libexec.install Dir['*']
|
2009-09-11 21:32:10 +00:00
|
|
|
end
|
2010-12-31 07:33:59 +00:00
|
|
|
|
2011-06-04 03:03:21 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
You can use $SBT_OPTS to pass additional JVM options to SBT.
|
|
|
|
For convenience, this can specified in `~/.sbtconfig`.
|
2010-12-31 07:33:59 +00:00
|
|
|
|
2011-06-04 03:03:21 +00:00
|
|
|
For example:
|
|
|
|
SBT_OPTS="-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M"
|
2010-12-31 07:33:59 +00:00
|
|
|
EOS
|
|
|
|
end
|
2009-09-11 21:32:10 +00:00
|
|
|
end
|