homebrew-core/Formula/tcpreplay.rb
Fred Klassen 5a3dbb446d tcpreplay: point to the new maintainer's home page
Closes Homebrew/homebrew#31165.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-07-27 12:28:36 -07:00

15 lines
492 B
Ruby

require "formula"
class Tcpreplay < Formula
homepage "http://tcpreplay.appneta.com"
url "https://downloads.sourceforge.net/project/tcpreplay/tcpreplay/4.0.4/tcpreplay-4.0.4.tar.gz"
sha1 "f2f266508b06693852bbc5003b20b18da4a1f01b"
def install
system "./configure", "--disable-dependency-tracking",
"--disable-debug",
"--prefix=#{prefix}",
"--enable-dynamic-link"
system "make", "install"
end
end