2009-11-22 04:08:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Leiningen <Formula
|
2010-04-08 01:08:25 +00:00
|
|
|
url 'http://github.com/technomancy/leiningen/tarball/1.1.0'
|
2009-11-22 04:08:42 +00:00
|
|
|
homepage 'http://github.com/technomancy/leiningen'
|
2010-04-23 15:09:52 +00:00
|
|
|
md5 '96c542751e19816be4676a859e1734b6'
|
2009-11-22 04:08:42 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "bin/lein self-install"
|
2009-12-22 04:43:51 +00:00
|
|
|
prefix.install 'bin'
|
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
|
|
|
|
end
|