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

class Unbound < Formula
  url 'http://www.unbound.net/downloads/unbound-1.4.7.tar.gz'
  homepage 'http://www.unbound.net'
  md5 '97ee3c4a9877ff725fad23e31ecadfe0'

  depends_on 'ldns'

  def install
    system "./configure", "--disable-gost", "--disable-sha2", "--with-ssl-optional",
                          "--prefix=#{prefix}"
    system "make install"
  end
end