homebrew-core/Formula/gmime.rb
Doug Woos 55855f97ac Added --disable-mono to gmime configuration
Without --disable-mono, ./configure errors out trying to find
gtk-sharp. So either mono needs to be a dependency or the mono
bindings need to be disabled. Note that Macports disables the
bindings.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-21 09:19:36 -07:00

17 lines
499 B
Ruby

require 'formula'
class Gmime <Formula
url 'http://ftp.acc.umu.se/pub/GNOME/sources/gmime/2.4/gmime-2.4.14.tar.bz2'
homepage 'http://spruce.sourceforge.net/gmime/'
md5 '343d99e760f096bcea17059f01bad50c'
depends_on 'glib'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-largefile",
"--disable-mono"
system "make install"
end
end