homebrew-core/Formula/leiningen.rb
Daniel Westheide 593a3475f3 leinigen 1.7.0
Closes Homebrew/homebrew#10888.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-12 21:31:10 -07:00

21 lines
573 B
Ruby

require 'formula'
class Leiningen < Formula
homepage 'http://github.com/technomancy/leiningen'
url 'http://github.com/technomancy/leiningen/tarball/1.7.0'
md5 '1daab06f9c0504418160f544f6c25886'
head 'https://github.com/technomancy/leiningen.git', :using => :git
def install
bin.install "bin/lein"
system "#{bin}/lein", "self-install"
(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