2011-03-10 05:11:03 +00:00
|
|
|
class Dns2tcp < Formula
|
2015-05-06 07:13:01 +00:00
|
|
|
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
|
2012-02-17 16:36:15 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2015-05-06 07:13:01 +00:00
|
|
|
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
|