Add formula for gmime.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Aaron Ecay 2010-02-01 03:46:53 -05:00 committed by Adam Vandenberg
parent c2af27e174
commit 810fd4b440
1 changed files with 14 additions and 0 deletions

14
Formula/gmime.rb Normal file
View File

@ -0,0 +1,14 @@
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", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end