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

class Leiningen < Formula
  homepage 'https://github.com/technomancy/leiningen'
  url 'https://github.com/technomancy/leiningen/archive/2.1.3.tar.gz'
  sha1 '91d8a484c5fbefeeafcc610bada3605a5afa7a1e'

  head 'https://github.com/technomancy/leiningen.git'

  def install
    bin.install "bin/lein"
    system "#{bin}/lein", "self-install"
    bash_completion.install 'bash_completion.bash' => 'lein-completion.bash'
  end

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