aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/adns.rb
blob: ec02582a07ca9861051289a62b756b1285dad06b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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