aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clojure-contrib.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-09 12:40:41 -0700
committerAdam Vandenberg2010-07-16 09:09:39 -0700
commit511d309374f693231938eecfda7202c2a6ce3e4d (patch)
tree08783d129a434ec5977ef27eae3083f5f932b53c /Library/Formula/clojure-contrib.rb
parent418902f7beabf6cf724c9e84cf5294aed5fc376e (diff)
downloadhomebrew-511d309374f693231938eecfda7202c2a6ce3e4d.tar.bz2
Add ARGV.build_head? and use it.
This allows both "--HEAD" and "-H" to be used consistently, which was the intention in the first place.
Diffstat (limited to 'Library/Formula/clojure-contrib.rb')
-rw-r--r--Library/Formula/clojure-contrib.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/clojure-contrib.rb b/Library/Formula/clojure-contrib.rb
index 576e84f20..f99729307 100644
--- a/Library/Formula/clojure-contrib.rb
+++ b/Library/Formula/clojure-contrib.rb
@@ -7,14 +7,14 @@ class ClojureContrib <Formula
homepage 'http://richhickey.github.com/clojure-contrib/branch-1.1.x/index.html'
depends_on 'clojure'
- depends_on 'maven' if ARGV.include? '--HEAD'
+ depends_on 'maven' if ARGV.build_head?
def jar
'clojure-contrib.jar'
end
def install
- if ARGV.include? '--HEAD'
+ if ARGV.build_head?
system "mvn package -Dclojure.jar=#{HOMEBREW_PREFIX}/Cellar/clojure/HEAD/clojure.jar"
system "mv target/clojure-contrib-*.jar #{jar}"
end