homebrew-core/Formula/mpop.rb

15 lines
386 B
Ruby
Raw Normal View History

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
homepage 'http://mpop.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/mpop/mpop/1.0.28/mpop-1.0.28.tar.bz2'
sha1 'bfc2447adb25081aacb6999c5badaf86d5a39741'
2009-12-01 09:08:43 +00:00
depends_on 'pkg-config' => :build
2009-12-01 09:08:43 +00:00
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
2009-12-01 09:08:43 +00:00
system "make install"
end
end