aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pdnsd.rb
blob: 170ddad2160aebf4c94de59c63172f06d045b420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Pdnsd <Formula
  url 'http://www.phys.uu.nl/~rombouts/pdnsd/releases/pdnsd-1.2.8-par.tar.gz'
  version '1.2.8-par'
  homepage 'http://www.phys.uu.nl/~rombouts/pdnsd.html'
  md5 '779c5d19576e561fbf2455de435e5597'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--localstatedir=#{var}",
                          "--sysconfdir=#{etc}",
                          "--with-cachedir=#{var}/cache/pdnsd"
    system "make install"
  end
end