aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tiger-vnc.rb
blob: 44388f0c087aa16bb2db676d7af766b73801f7b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class TigerVnc < Formula
  homepage 'http://tigervnc.org/'
  url 'http://downloads.sourceforge.net/project/tigervnc/tigervnc/1.0.1/tigervnc-1.0.1.tar.gz'
  md5 'daca3eb16afe65253b766eccb8bfdbc5'

  def install
    cd "unix" do
      system "./configure", "--disable-debug", "--disable-dependency-tracking",
                            "--prefix=#{prefix}"
      system "make install"
    end
  end

  def caveats
    "NOTE: This is X11 software."
  end
end