homebrew-core/Formula/leiningen.rb

22 lines
575 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Leiningen < Formula
2013-03-02 09:18:43 +00:00
homepage 'https://github.com/technomancy/leiningen'
url 'https://github.com/technomancy/leiningen/archive/2.1.1.tar.gz'
sha1 '19330ac159772a22237d6bff1345f22f0b1677e5'
2012-04-19 02:37:43 +00:00
head 'https://github.com/technomancy/leiningen.git'
def install
2010-07-18 22:11:41 +00:00
bin.install "bin/lein"
system "#{bin}/lein", "self-install"
2010-02-18 18:05:01 +00:00
(etc+'bash_completion.d').install 'bash_completion.bash' => 'lein-completion.bash'
end
2010-07-18 22:11:41 +00:00
def caveats; <<-EOS.undent
Standalone jar and dependencies installed to:
$HOME/.m2/repository
EOS
end
end