homebrew-core/Formula/leiningen.rb
Paul Ingles ba5c6f9f2b Update leiningen to 1.4.0 release
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-06 12:37:21 -08:00

22 lines
612 B
Ruby

require 'formula'
class Leiningen <Formula
url 'http://github.com/technomancy/leiningen/tarball/1.4.0'
head 'http://github.com/technomancy/leiningen.git', :using => :git
homepage 'http://github.com/technomancy/leiningen'
md5 '9e2c1dd7b136591ebae9a80672f96fc6'
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