aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clojure-contrib.rb
blob: 576e84f20398f222c8f6f58ef944c0045846fce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require 'formula'

class ClojureContrib <Formula
  url 'http://clojure-contrib.googlecode.com/files/clojure-contrib-1.1.0.zip'
  md5 'ffaa8d5ea72abd9547186ec38f37c198'
  head 'git://github.com/richhickey/clojure-contrib.git'
  homepage 'http://richhickey.github.com/clojure-contrib/branch-1.1.x/index.html'

  depends_on 'clojure'
  depends_on 'maven' if ARGV.include? '--HEAD'

  def jar
    'clojure-contrib.jar'
  end

  def install
    if ARGV.include? '--HEAD'
      system "mvn package -Dclojure.jar=#{HOMEBREW_PREFIX}/Cellar/clojure/HEAD/clojure.jar"
      system "mv target/clojure-contrib-*.jar #{jar}"
    end
    prefix.install jar
  end

  def caveats
    <<-END_CAVEATS
For Clojure to detect the contrib libs, the following path must be in your
CLASSPATH ENV variable:

    #{prefix}/#{jar}

To do this with bash, add the following to your ~/.profile file:

    export CLASSPATH=$CLASSPATH:#{prefix}/#{jar}
    END_CAVEATS
  end
end