b5876c08f3
Update homebrew formula to latest stable sbt. Devel now at the most recent nightly. Details ---- Prod o Update the version of the launcher. o Update the sha1 of the sbt launcher. o Update the url of the launcher. Devel o Updated the url for devel to the latest nightly. o Update the devel version o Update the sha1 for devel. o v 0.13.2-20131212-062515 Fix trailing whitespace. Closes Homebrew/homebrew#25173. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
33 lines
979 B
Ruby
33 lines
979 B
Ruby
require 'formula'
|
|
|
|
class Sbt < Formula
|
|
homepage 'http://www.scala-sbt.org'
|
|
url 'http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/0.13.1/sbt-launch.jar'
|
|
version '0.13.1'
|
|
sha1 '3a1718a467ca34380b0a356a2e1bb46813aff240'
|
|
|
|
devel do
|
|
url 'http://repo.typesafe.com/typesafe/ivy-snapshots/org.scala-sbt/sbt-launch/0.13.2-20131212-062515/sbt-launch.jar'
|
|
version '0.13.2-20131212-062515'
|
|
sha1 'c820c7cb68646cacba5c97f61667ae98e9bb6f77'
|
|
end
|
|
|
|
def install
|
|
(bin+'sbt').write <<-EOS.undent
|
|
#!/bin/sh
|
|
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`.
|
|
|
|
For example:
|
|
SBT_OPTS="-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M"
|
|
EOS
|
|
end
|
|
end
|