93392c5803
Add build time dep on pkg-config that it uses. Remove `--disable-debug`, which is not a valid option. Remove option to enable MacOS Keyring. It is the default. Compiles with clang and llvm-gcc from XCode-4.3.2. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
386 B
Ruby
14 lines
386 B
Ruby
require 'formula'
|
|
|
|
class Mpop < Formula
|
|
homepage 'http://mpop.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/project/mpop/mpop/1.0.27/mpop-1.0.27.tar.bz2'
|
|
sha1 'ea9e190d8b7172e8c4c100e3f90d1840f3f8a259'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
|
|
system "make install"
|
|
end
|
|
end
|