aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tig.rb
blob: af27337c99f3c66df166dc03ec9222dcd63f867c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Tig < Formula
  url 'http://jonas.nitro.dk/tig/releases/tig-0.18.tar.gz'
  homepage 'http://jonas.nitro.dk/tig/'
  md5 '4fa9e33c5daa76b6fed11e068405356f'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
    system "make install-doc-man"
  end
end