homebrew-core/Formula/leiningen.rb
John C Bledsoe 985fd00554 Leiningen 2.1.3
Closes Homebrew/homebrew#19282.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-18 08:15:46 -07:00

21 lines
575 B
Ruby

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"
(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