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-05-30 00:16:50 +00:00
|
|
|
md5 'f0c0ad3450c3979658aea443c560761a'
|
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
|