homebrew-core/Formula/gerbv.rb
Severin Smith 98e944db48 Updated gerbv formula to version 2.5.0
Simple update from version 2.4.0 to 2.5.0. Changed the MD5 and the url.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-08 13:20:22 -08:00

22 lines
614 B
Ruby

require 'formula'
class Gerbv <Formula
url 'http://downloads.sourceforge.net/project/gerbv/gerbv/gerbv-2.5.0/gerbv-2.5.0.tar.gz'
homepage 'http://gerbv.gpleda.org/'
md5 '633a55473f62b96fff302ed1ed52c88e'
depends_on 'pkg-config' => :build
depends_on 'gtk+'
depends_on 'cairo' if MACOS_VERSION < 10.6
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-update-desktop-database"
system "make install"
end
def caveats
"Note: gerbv is an X11 application."
end
end