homebrew-core/Formula/dns2tcp.rb

13 lines
368 B
Ruby
Raw Normal View History

2009-11-28 14:36:15 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Dns2tcp < Formula
2009-11-28 14:36:15 +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'
md5 '51c5dc69f5814c2936ce6832217d292d'
2009-11-28 14:36:15 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
2009-11-28 14:36:15 +00:00
system "make install"
end
end