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