22 lines
613 B
Ruby
22 lines
613 B
Ruby
require 'formula'
|
|
|
|
class Leiningen < Formula
|
|
url 'http://github.com/technomancy/leiningen/tarball/1.4.2'
|
|
head 'http://github.com/technomancy/leiningen.git', :using => :git
|
|
homepage 'http://github.com/technomancy/leiningen'
|
|
md5 '85e7d38cd1310de6d70cc345ee5963a6'
|
|
|
|
def install
|
|
bin.install "bin/lein"
|
|
system "#{bin}/lein self-install"
|
|
|
|
# Install the lein bash completion file
|
|
(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
|