diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dns2tcp.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/dns2tcp.rb b/Library/Formula/dns2tcp.rb new file mode 100644 index 000000000..09f071d72 --- /dev/null +++ b/Library/Formula/dns2tcp.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Dns2tcp <Formula + url 'http://www.hsc.fr/ressources/outils/dns2tcp/download/dns2tcp-0.4.3.tar.gz' + homepage 'http://www.hsc.fr/ressources/outils/dns2tcp/index.html.en' + md5 'd2b322ee27f4ff53dfdad61aa2f42dd8' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
