aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tig.rb
blob: 68bb2ea46f8fd52b0a801a1705cf060e286055f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'formula'

class Tig < Formula
  homepage 'http://jonas.nitro.dk/tig/'
  url 'http://jonas.nitro.dk/tig/releases/tig-1.2.1.tar.gz'
  sha1 '5755bae7342debf94ef33973e0eaff6207e623dc'

  option 'with-docs', 'Build man pages using asciidoc and xmlto'

  if build.with? "docs"
    depends_on "asciidoc"
    depends_on "xmlto"
  end

  def install
    system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
    system "make install"

    if build.with? "docs"
      system "make install-doc-man"
    end

    bash_completion.install 'contrib/tig-completion.bash'
  end
end