aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMarkus Heberling2009-11-28 15:36:15 +0100
committerMax Howell2009-12-05 16:33:37 +0000
commiteaf5888ff56f3975ff640c6637cfb3e643dfea13 (patch)
tree01c7777bb4203634cda35935aa3cac3f49c72929 /Library/Formula
parent86990d43a96bec203b45a47fb2f7b1cfaec4d06a (diff)
downloadhomebrew-eaf5888ff56f3975ff640c6637cfb3e643dfea13.tar.bz2
Added formula for dns2tcp
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dns2tcp.rb12
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