aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDan Larkin2009-12-11 02:19:53 -0500
committerMax Howell2009-12-22 04:01:26 +0000
commit9be53495450857289e76c785df29749d63d2bbc2 (patch)
treef8a2f2f21887486f3333d3211bf642078eb8b8b7 /Library
parentf375c3de23a864eac9fe3ff95e23c813cac63aab (diff)
downloadhomebrew-9be53495450857289e76c785df29749d63d2bbc2.tar.bz2
update Leiningen formula to 1.0.1
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/leiningen.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/Library/Formula/leiningen.rb b/Library/Formula/leiningen.rb
index bfe123d48..bead2990e 100644
--- a/Library/Formula/leiningen.rb
+++ b/Library/Formula/leiningen.rb
@@ -1,13 +1,18 @@
require 'formula'
class Leiningen <Formula
- version '0.5.0'
- url 'http://github.com/technomancy/leiningen/tarball/0.5.0'
+ version '1.0.1'
+ url 'http://github.com/technomancy/leiningen/tarball/1.0.1'
homepage 'http://github.com/technomancy/leiningen'
- md5 '9f63981bbcf11272270bdff0747fff2f'
+ md5 'eb287442bb1bcac2de537d00c4d1b1d3'
def install
system "bin/lein self-install"
- prefix.install %w[bin README.md]
+ prefix.install %w[bin README.md COPYING NEWS]
+
+ # Install the lein bash completion file
+ system "mv bash_completion.bash lein-completion.bash"
+ (etc+'bash_completion.d').install 'lein-completion.bash'
+
end
end