2009-12-01 09:08:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mpop < Formula
|
2009-12-01 09:08:43 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/mpop/mpop/1.0.19/mpop-1.0.19.tar.bz2'
|
|
|
|
homepage 'http://mpop.sourceforge.net/'
|
|
|
|
md5 '40a48d486121a15075faee944a7b8fb7'
|
|
|
|
|
2011-10-01 14:50:13 +00:00
|
|
|
def options
|
|
|
|
[['--with-macosx-keyring', "Support Mac OS X Keyring"]]
|
|
|
|
end
|
|
|
|
|
2009-12-01 09:08:43 +00:00
|
|
|
def install
|
2011-10-01 14:50:13 +00:00
|
|
|
args = [ "--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking"]
|
|
|
|
args << "--with-macosx-keyring" if ARGV.include? '--with-macosx-keyring'
|
|
|
|
system "./configure", *args
|
2009-12-01 09:08:43 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|