521d6bb628
Closes Homebrew/homebrew#29891. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Trafshow < Formula
|
|
homepage 'http://soft.risp.ru/trafshow/index_en.shtml'
|
|
url 'http://distcache.freebsd.org/ports-distfiles/trafshow-5.2.3.tgz'
|
|
sha1 '1c68f603f12357e932c83de850366c9b46e53d89'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "c41e1061e5300760e840f7cfde4ae669b24800e8" => :mavericks
|
|
sha1 "13881774f1b3a0ba6886dda9fe12aea126f2fefd" => :mountain_lion
|
|
sha1 "86097cbc1a851ae8a07b591ef6da823926b132cc" => :lion
|
|
end
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
{
|
|
"domain_resolver.c" => "1e7b470e65ed5df0a5ab2b8c52309d19430a6b9b",
|
|
"colormask.c" => "25086973e067eb205b67c63014b188af3b3477ab",
|
|
"trafshow.c" => "3a7f7e1cd740c8f027dee7e0d5f9d614b83984f2",
|
|
"trafshow.1" => "99c1d930049b261a5848c34b647d21e6980fa671",
|
|
"configure" => "94e9667a86f11432e3458fae6acc593db75936b5",
|
|
}.each do |name, sha|
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/68507/trunk/dports/net/trafshow/files/patch-#{name}"
|
|
sha1 sha
|
|
end
|
|
end
|
|
|
|
def install
|
|
cp Dir["#{Formula["libtool"].opt_share}/libtool/config/config.*"], buildpath
|
|
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-slang"
|
|
system "make"
|
|
|
|
bin.install "trafshow"
|
|
man1.install "trafshow.1"
|
|
etc.install ".trafshow" => "trafshow.default"
|
|
end
|
|
end
|