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-04-03 13:56:10 +00:00
|
|
|
JAR = 'sbt-launch-0.7.5.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/'
|
2011-04-03 13:56:10 +00:00
|
|
|
md5 'bb5f6314b8189210ae2b9b463b8561c8'
|
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
|