blob: c4d2efd83c195b3e1e37ce5f6ed33ffadb800678 (
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
|