2009-11-22 04:08:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Leiningen < Formula
|
2011-09-17 18:56:16 +00:00
|
|
|
url 'http://github.com/technomancy/leiningen/tarball/1.6.1.1'
|
2010-12-06 09:54:10 +00:00
|
|
|
homepage 'http://github.com/technomancy/leiningen'
|
2011-09-17 18:56:16 +00:00
|
|
|
md5 'dbd6ac1df529e1e3b84814b8c44265ed'
|
|
|
|
|
|
|
|
head 'https://github.com/technomancy/leiningen.git', :using => :git
|
2009-11-22 04:08:42 +00:00
|
|
|
|
|
|
|
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'
|
2009-11-22 04:08:42 +00:00
|
|
|
end
|
2010-07-18 22:11:41 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Standalone jar and dependencies installed to:
|
|
|
|
$HOME/.m2/repository
|
|
|
|
EOS
|
|
|
|
end
|
2009-11-22 04:08:42 +00:00
|
|
|
end
|