homebrew-core/Formula/leiningen.rb

23 lines
612 B
Ruby
Raw Normal View History

require 'formula'
class Leiningen <Formula
url 'http://github.com/technomancy/leiningen/tarball/1.3.1'
head 'http://github.com/technomancy/leiningen.git', :using => :git
homepage 'http://github.com/technomancy/leiningen'
md5 '707fb0da7b89b44d9d37a9bac2bf3b3f'
def install
2010-07-18 22:11:41 +00:00
bin.install "bin/lein"
system "#{bin}/lein self-install"
2009-12-11 07:19:53 +00:00
# Install the lein bash completion file
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