diff options
| author | Michael Dippery | 2011-09-29 10:53:41 -0400 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-10-05 14:41:43 -0700 |
| commit | c56dccfac28fc28ff016360f379edbc5e3d8fc88 (patch) | |
| tree | 420f45a87c781fa8aa2aae85bea85040160feef8 /Library | |
| parent | 82fd7f0d512a5a87f4d50b4cb67990af9260e45d (diff) | |
| download | homebrew-c56dccfac28fc28ff016360f379edbc5e3d8fc88.tar.bz2 | |
clojure: Update to v1.3.0
Closes #7893.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/clojure.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/clojure.rb b/Library/Formula/clojure.rb index 2fe39015f..6a962c18b 100644 --- a/Library/Formula/clojure.rb +++ b/Library/Formula/clojure.rb @@ -1,8 +1,8 @@ require 'formula' class Clojure < Formula - url 'https://github.com/downloads/clojure/clojure/clojure-1.2.1.zip' - md5 'c5724c624fd6ce6a1d00252c27d53ebe' + url 'http://repo1.maven.org/maven2/org/clojure/clojure/1.3.0/clojure-1.3.0.zip' + md5 'de91ee9914017a38c7cc391ab8fcbc1a' head 'https://github.com/clojure/clojure.git' homepage 'http://clojure.org/' @@ -12,7 +12,7 @@ class Clojure < Formula # With no arguments runs Clojure's REPL. # Put the Clojure jar from the cellar and the current folder in the classpath. - CLOJURE=$CLASSPATH:#{prefix}/clojure.jar:${PWD} + CLOJURE=$CLASSPATH:#{prefix}/clojure-1.3.0.jar:${PWD} if [ "$#" -eq 0 ]; then java -cp $CLOJURE clojure.main --repl @@ -24,7 +24,7 @@ class Clojure < Formula def install system "ant" if ARGV.build_head? - prefix.install 'clojure.jar' + prefix.install 'clojure-1.3.0.jar' (prefix+'classes').mkpath (bin+'clj').write script end |
