aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJoseph Liu2012-09-03 18:11:20 -0700
committerAdam Vandenberg2012-09-03 18:18:45 -0700
commitc9e46bd0e0b3ad4326d555dba0b9269d978ee3d7 (patch)
tree7a0b597f5dff5a5e859a4446ee982ca48a85c46d /Library/Formula
parent2073a749669dadbaff48bdb6f0ceb6ded0b24c15 (diff)
downloadhomebrew-c9e46bd0e0b3ad4326d555dba0b9269d978ee3d7.tar.bz2
mr 1.13
Closes #14682. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mr.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/mr.rb b/Library/Formula/mr.rb
index 3e2cbeb2d..8817c8b09 100644
--- a/Library/Formula/mr.rb
+++ b/Library/Formula/mr.rb
@@ -1,14 +1,14 @@
require 'formula'
class Mr < Formula
- version '1.02'
- url 'git://git.kitenet.net/mr', :tag => '1.02'
homepage 'http://kitenet.net/~joey/code/mr/'
+ url 'git://git.kitenet.net/mr', :tag => '1.13'
+ version '1.13'
def install
system "make"
- bin.install ['mr', 'webcheckout']
+ bin.install 'mr', 'webcheckout'
man1.install gzip('mr.1', 'webcheckout.1')
- (share+'mr').install Dir['lib/*']
+ (share/'mr').install Dir['lib/*']
end
end