homebrew-core/Formula/dns2tcp.rb

16 lines
512 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Dns2tcp < Formula
homepage "http://www.hsc.fr/ressources/outils/dns2tcp/index.html.en"
url "http://www.hsc.fr/ressources/outils/dns2tcp/download/dns2tcp-0.5.2.tar.gz"
sha256 "ea9ef59002b86519a43fca320982ae971e2df54cdc54cdb35562c751704278d9"
2009-11-28 14:36:15 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make", "install"
end
test do
assert_match(/^dns2tcp v#{version} /,
shell_output("#{bin}/dns2tcpc -help 2>&1", 255))
2009-11-28 14:36:15 +00:00
end
end