blob: c8ae285a8904a5c4420e70114deee1c792b1340f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require "formula"
class Grepcidr < Formula
  homepage "http://www.pc-tools.net/unix/grepcidr/"
  url "http://www.pc-tools.net/files/unix/grepcidr-2.0.tar.gz"
  sha1 "5ec8cf18acbf92851b632d297b9fd6ee77c523ba"
  def install
    system "make"
    bin.install "grepcidr"
    man1.install "grepcidr.1"
  end
end
 |