require 'formula' class Leiningen < Formula homepage 'http://github.com/technomancy/leiningen' url 'http://github.com/technomancy/leiningen/tarball/1.7.0' md5 '1daab06f9c0504418160f544f6c25886' head 'https://github.com/technomancy/leiningen.git', :using => :git def install bin.install "bin/lein" system "#{bin}/lein", "self-install" (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