homebrew-core/Formula/leiningen.rb
Martin Kühl 93244bda21 Add HEAD support for formula leiningen.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-02 19:50:03 -07:00

16 lines
486 B
Ruby

require 'formula'
class Leiningen <Formula
url 'http://github.com/technomancy/leiningen/tarball/1.1.0'
head 'http://github.com/technomancy/leiningen.git', :using => :git
homepage 'http://github.com/technomancy/leiningen'
md5 'f0c0ad3450c3979658aea443c560761a'
def install
system "bin/lein self-install"
prefix.install 'bin'
# Install the lein bash completion file
(etc+'bash_completion.d').install 'bash_completion.bash' => 'lein-completion.bash'
end
end