homebrew-core/Formula/tig.rb
Joshua Priddle 0017415e0f tig has man pages
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-11 13:43:08 -08:00

13 lines
No EOL
328 B
Ruby

require 'formula'
class Tig <Formula
url 'http://jonas.nitro.dk/tig/releases/tig-0.15.tar.gz'
homepage 'http://jonas.nitro.dk/tig/'
md5 '8f373a99823f6db241b66642075657d3'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
system "make install-doc-man"
end
end