blob: a7e6051b7bc7dfd94faea83f0e093cd0e0aa63d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Leiningen < Formula
homepage 'http://github.com/technomancy/leiningen'
url 'http://github.com/technomancy/leiningen/tarball/1.7.1'
md5 'd3f7deb045e0f3430f464553b77b6589'
head 'https://github.com/technomancy/leiningen.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
|