2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-11 21:32:10 +00:00
|
|
|
|
|
|
|
class Sbt <Formula
|
2010-05-31 02:21:51 +00:00
|
|
|
JAR = 'sbt-launch-0.7.4.jar'
|
2009-09-30 15:18:16 +00:00
|
|
|
url "http://simple-build-tool.googlecode.com/files/#{JAR}"
|
2010-08-21 19:01:45 +00:00
|
|
|
homepage 'http://code.google.com/p/simple-build-tool/'
|
2010-05-31 02:21:51 +00:00
|
|
|
md5 '8903fb141037056a497925f3efdb9edf'
|
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
|
|
|
|
if test -f ~/.sbtconfig; then
|
|
|
|
. ~/.sbtconfig
|
|
|
|
fi
|
|
|
|
exec java -Xmx512M ${SBT_OPTS} -jar #{libexec}/#{JAR} "$@"
|
|
|
|
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
|
|
|
|
|
|
|
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
|
2009-09-11 21:32:10 +00:00
|
|
|
end
|