CGVG 1.6.2

Closes Homebrew/homebrew#16126.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Dongsheng Cai 2012-11-18 21:06:40 +08:00 committed by Adam Vandenberg
parent 7f231acbbf
commit c4e0f91b79

13
Formula/cgvg.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Cgvg < Formula
homepage 'http://www.uzix.org/cgvg.html'
url 'http://www.uzix.org/cgvg/cgvg-1.6.2.tar.gz'
sha1 '24f460d75de95969e30d8a5187d037119ac79ad2'
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end