homebrew-core/Formula/leiningen.rb

28 lines
729 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Leiningen < Formula
homepage 'http://github.com/technomancy/leiningen'
url 'http://github.com/technomancy/leiningen/tarball/1.7.1'
sha1 '80361e88cc5a88553d64e0d98ef542ab74b7148f'
2012-04-19 02:37:43 +00:00
head 'https://github.com/technomancy/leiningen.git'
devel do
url 'https://github.com/technomancy/leiningen/tarball/2.0.0-RC2'
version '2.0.0-RC2'
sha1 '71e47c8686c0148532738a7ee56df83757382607'
end
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