homebrew-core/Formula/mr.rb
Ian Lancaster 943049d5fb mr 1.15
Closes Homebrew/homebrew#19613.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-05 08:54:59 -07:00

14 lines
315 B
Ruby

require 'formula'
class Mr < Formula
homepage 'http://kitenet.net/~joey/code/mr/'
url 'git://git.kitenet.net/mr', :tag => '1.15'
version '1.15'
def install
system "make"
bin.install 'mr', 'webcheckout'
man1.install gzip('mr.1', 'webcheckout.1')
(share/'mr').install Dir['lib/*']
end
end