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
|
2011-09-25 11:28:48 +00:00
|
|
|
url "http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-tools.sbt/sbt-launch/0.11.0/sbt-launch.jar"
|
2011-06-04 03:03:21 +00:00
|
|
|
homepage 'http://github.com/harrah/xsbt/'
|
2011-09-25 11:28:48 +00:00
|
|
|
version '0.11.0'
|
|
|
|
md5 'fa57b75cbc45763b7188a71928f4cd9a'
|
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
|