mboxgrep 0.7.9

Closes Homebrew/homebrew#22364.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Peter Aronoff 2013-09-06 16:55:00 -04:00 committed by Adam Vandenberg
parent 658d994357
commit a56df4758b

21
Formula/mboxgrep.rb Normal file
View file

@ -0,0 +1,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
def test
system "#{bin}/mboxgrep", "--version"
end
end