aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMathieu Rhéaume2011-04-27 09:36:49 -0400
committerAdam Vandenberg2011-05-01 09:23:47 -0700
commit3a5d94b6b176b7bfb0f7538cbb378da1911e887a (patch)
treec658f93cac0748fdd9b2bebea215f386d141ec70 /Library/Formula
parente06f7b93e0bf3c1663c0a2d621fa780ad2eae7eb (diff)
downloadhomebrew-3a5d94b6b176b7bfb0f7538cbb378da1911e887a.tar.bz2
GNU ADNS 1.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/adns.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/adns.rb b/Library/Formula/adns.rb
new file mode 100644
index 000000000..ec02582a0
--- /dev/null
+++ b/Library/Formula/adns.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Adns < Formula
+ url 'http://ftp.gnu.org/gnu/adns/adns-1.3.tar.gz'
+ homepage 'http://www.chiark.greenend.org.uk/~ian/adns/'
+ md5 'd19cddcc11ce3183549bab7f136e0f73'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--disable-dynamic"
+ system "make"
+ system "make install"
+ end
+end