aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/leiningen.rb
blob: 897369b706ebbf2c78159c3b30be4cfdd6d3cab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Leiningen < Formula
  url 'http://github.com/technomancy/leiningen/tarball/1.5.2'
  head 'http://github.com/technomancy/leiningen.git', :using => :git
  homepage 'http://github.com/technomancy/leiningen'
  md5 '9e6b82623573e7b55643d167792a1fc2'

  def install
    bin.install "bin/lein"
    system "#{bin}/lein self-install"

    # Install the lein bash completion file
    (etc+'bash_completion.d').install 'bash_completion.bash' => 'lein-completion.bash'
  end

  def caveats; <<-EOS.undent
    Standalone jar and dependencies installed to:
      $HOME/.m2/repository
    EOS
  end
end