blob: 62f527594613b9790c988b85a40d8648ab57603f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Tcping < Formula
  url 'http://www.linuxco.de/tcping/tcping-1.3.5.tar.gz'
  homepage 'http://www.linuxco.de/tcping/tcping.html'
  md5 'f9dd03c730db6999ca8beca479f078e3'
  def install
    system "make"
    bin.install 'tcping'
  end
end
  |