blob: 0571545c47464982ff3b2a65c08aee26fee4aa58 (
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 'https://github.com/technomancy/leiningen'
url 'https://github.com/technomancy/leiningen/tarball/2.0.0'
sha1 '133e1d0667734b25a10aa6547967710f296e8ea1'
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
|