blob: 371cfacb440169dcdeaf789d32a4205df9d3c411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Leiningen < Formula
homepage 'http://github.com/technomancy/leiningen'
url 'http://github.com/technomancy/leiningen/tarball/1.7.1'
sha1 '80361e88cc5a88553d64e0d98ef542ab74b7148f'
head 'https://github.com/technomancy/leiningen.git'
devel do
url 'https://github.com/technomancy/leiningen/tarball/2.0.0-preview10'
version '2.0.0-preview10'
sha1 'e6bef03e50c2f0bfaa927c52953440c24a9ce235'
end
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
|