23 lines
846 B
Ruby
23 lines
846 B
Ruby
class Lft < Formula
|
|
desc "Layer Four Traceroute (LFT), an advanced traceroute tool"
|
|
homepage "https://pwhois.org/lft/"
|
|
url "https://pwhois.org/dl/index.who?file=lft-3.78.tar.gz"
|
|
sha256 "000575891b4094319a56d395c0ec576651fe76b251596ab19d3eb2e5f8d4bf78"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "2e024fb99a6de1ccc416f7a87d7c44ebcabcd854bf66c5ba9d8a8c67969a3b02" => :sierra
|
|
sha256 "3282198e61767e578d7b5fc5123f4657093b331954e7ab6d02aaab723b24b35c" => :el_capitan
|
|
sha256 "170bcc6b837eac788cac1995632308210617628325e51ee1b9b0d255755e03cd" => :yosemite
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/lft -v 2>&1")
|
|
end
|
|
end
|