homebrew-core/Formula/mr.rb
Yegor Pomortsev 1d7e8bc817 mr 1.20141024
Closes Homebrew/homebrew#34110.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-11-11 20:31:31 -06:00

13 lines
306 B
Ruby

require 'formula'
class Mr < Formula
homepage 'http://myrepos.branchable.com/'
url 'git://myrepos.branchable.com/', :tag => '1.20141024'
def install
system "make"
bin.install 'mr', 'webcheckout'
man1.install gzip('mr.1', 'webcheckout.1')
(share/'mr').install Dir['lib/*']
end
end