blob: cde5541b529514429060408184f40f75e66760f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Mpop < Formula
homepage 'http://mpop.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/mpop/mpop/1.0.28/mpop-1.0.28.tar.bz2'
sha1 'bfc2447adb25081aacb6999c5badaf86d5a39741'
depends_on 'pkg-config' => :build
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
system "make install"
end
end
|