aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLucas Torri2011-06-04 00:03:21 -0300
committerAdam Vandenberg2011-06-03 20:55:14 -0700
commitacf6b3cf086d2916cee099b294bda0f5c664edc3 (patch)
treebfa83a8d116c4d19cdc3026323a1a05cb498962a /Library/Formula
parentae3519a84962d47f5628dcc863ba32a4de59bdeb (diff)
downloadhomebrew-acf6b3cf086d2916cee099b294bda0f5c664edc3.tar.bz2
sbt 0.10.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sbt.rb25
1 files changed, 11 insertions, 14 deletions
diff --git a/Library/Formula/sbt.rb b/Library/Formula/sbt.rb
index 1d51002cf..b948ea883 100644
--- a/Library/Formula/sbt.rb
+++ b/Library/Formula/sbt.rb
@@ -1,30 +1,27 @@
require 'formula'
class Sbt < Formula
- JAR = 'sbt-launch-0.7.7.jar'
- url "http://simple-build-tool.googlecode.com/files/#{JAR}"
- homepage 'http://code.google.com/p/simple-build-tool/'
- md5 '0cce0d5ade30a41b91e05705a9346b71'
+ url "http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-tools.sbt/sbt-launch/0.10.0/sbt-launch.jar"
+ homepage 'http://github.com/harrah/xsbt/'
+ version '0.10.0'
+ md5 '9d8ab145a3c4d6d5ee9f76cae6082308'
def install
(bin+'sbt').write <<-EOS.undent
#!/bin/sh
- if test -f ~/.sbtconfig; then
- . ~/.sbtconfig
- fi
- exec java -Xmx512M ${SBT_OPTS} -jar #{libexec}/#{JAR} "$@"
+ test -f ~/.sbtconfig && . ~/.sbtconfig
+ exec java -Xmx512M ${SBT_OPTS} -jar #{libexec}/sbt-launch.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`.
+ 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"
+ For example:
+ SBT_OPTS="-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M"
EOS
end
end