e4621ac85f
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
30 lines
744 B
Ruby
30 lines
744 B
Ruby
require 'formula'
|
|
|
|
class Sbt < Formula
|
|
JAR = 'sbt-launch-0.7.5.jar'
|
|
url "http://simple-build-tool.googlecode.com/files/#{JAR}"
|
|
homepage 'http://code.google.com/p/simple-build-tool/'
|
|
md5 'bb5f6314b8189210ae2b9b463b8561c8'
|
|
|
|
def install
|
|
(bin+'sbt').write <<-EOS.undent
|
|
#!/bin/sh
|
|
if test -f ~/.sbtconfig; then
|
|
. ~/.sbtconfig
|
|
fi
|
|
exec java -Xmx512M ${SBT_OPTS} -jar #{libexec}/#{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
|