15 lines
417 B
Ruby
15 lines
417 B
Ruby
require 'formula'
|
|
|
|
class Leiningen <Formula
|
|
url 'http://github.com/technomancy/leiningen/tarball/1.0.1'
|
|
homepage 'http://github.com/technomancy/leiningen'
|
|
md5 'eb287442bb1bcac2de537d00c4d1b1d3'
|
|
|
|
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
|