aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cgvg.rb
blob: 4b5543e9384c1533fb33e56806ac5af3090b0eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require "formula"

class Cgvg < Formula
  homepage "http://www.uzix.org/cgvg.html"
  url "http://www.uzix.org/cgvg/cgvg-1.6.3.tar.gz"
  sha1 "d5a108e470b6e7bdf7863c540aaf0efc9ddf1335"

  bottle do
    cellar :any
    sha1 "a3fcc3b1176529bc6e8c748b7ab0da5a4619d217" => :mavericks
    sha1 "7239ed81b63640aa43661a3d2c8aa86668125fb8" => :mountain_lion
    sha1 "06a91bea44a04501f593a43b02437bc4969a34a3" => :lion
  end

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