diff options
| author | Julien Blanchard | 2012-04-16 17:53:37 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-16 19:06:02 -0700 |
| commit | c6a605474ea5e7bd8f2327e73e33c0376c0448ba (patch) | |
| tree | 6ed2c4e7a9cb8036f62bb5bbf262892ba92f780f /Library/Formula/clojure.rb | |
| parent | f69ede14f00e7dd9269cd41305a671ef455f3a34 (diff) | |
| download | homebrew-c6a605474ea5e7bd8f2327e73e33c0376c0448ba.tar.bz2 | |
Clojure 1.4.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/clojure.rb')
| -rw-r--r-- | Library/Formula/clojure.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/clojure.rb b/Library/Formula/clojure.rb index 23ec6e1da..468d78af5 100644 --- a/Library/Formula/clojure.rb +++ b/Library/Formula/clojure.rb @@ -1,8 +1,8 @@ require 'formula' class Clojure < Formula - url 'http://repo1.maven.org/maven2/org/clojure/clojure/1.3.0/clojure-1.3.0.zip' - md5 'de91ee9914017a38c7cc391ab8fcbc1a' + url 'http://repo1.maven.org/maven2/org/clojure/clojure/1.4.0/clojure-1.4.0.zip' + md5 'db17baaea5bc90687c6293260499cca8' 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-1.3.0.jar:${PWD} + CLOJURE=$CLASSPATH:#{prefix}/clojure-1.4.0.jar:${PWD} if [ "$#" -eq 0 ]; then java -cp "$CLOJURE" clojure.main --repl @@ -24,8 +24,8 @@ class Clojure < Formula def install system "ant" if ARGV.build_head? - prefix.install 'clojure-1.3.0.jar' - (prefix+'clojure-1.3.0.jar').chmod(0644) # otherwise it's 0600 + prefix.install 'clojure-1.4.0.jar' + (prefix+'clojure-1.4.0.jar').chmod(0644) # otherwise it's 0600 (prefix+'classes').mkpath (bin+'clj').write script end |
