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