mboxgrep 0.7.9
Closes Homebrew/homebrew#22364. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
658d994357
commit
a56df4758b
1 changed files with 21 additions and 0 deletions
21
Formula/mboxgrep.rb
Normal file
21
Formula/mboxgrep.rb
Normal 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
|
Loading…
Reference in a new issue