blob: c80514f935e6ba9f66a057d8d3434806fd22bf41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
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'
md5 '51c5dc69f5814c2936ce6832217d292d'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|