homebrew-core/Formula/dns2tcp.rb

13 lines
377 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'
sha1 'b1de53800bbfda6d8c6f92e2844906b1b8a54af2'
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