aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mboxgrep.rb
blob: 4be90e3e8795c3ca24a0610aacb129c9e192385c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Mboxgrep < Formula
  homepage "http://www.mboxgrep.org"
  url "http://downloads.sourceforge.net/project/mboxgrep/mboxgrep/0.7.9/mboxgrep-0.7.9.tar.gz"
  sha1 "dc6dcaee5fc22bf606328b378883da34600be11a"

  depends_on "pcre"

  def install
    system "./configure", "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--infodir=#{info}"
    system "make"
    system "make", "install"
  end

  test do
    system "#{bin}/mboxgrep", "--version"
  end
end