blob: 861d110727378eed3b15e16c1c69abadc88c3d1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Mpop < Formula
url 'http://downloads.sourceforge.net/project/mpop/mpop/1.0.19/mpop-1.0.19.tar.bz2'
homepage 'http://mpop.sourceforge.net/'
md5 '40a48d486121a15075faee944a7b8fb7'
def options
[['--with-macosx-keyring', "Support Mac OS X Keyring"]]
end
def install
args = [ "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking"]
args << "--with-macosx-keyring" if ARGV.include? '--with-macosx-keyring'
system "./configure", *args
system "make install"
end
end
|