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

class Unbound < Formula
  url 'http://www.unbound.net/downloads/unbound-1.4.14.tar.gz'
  homepage 'http://www.unbound.net'
  md5 'cd69fdaaa6af01ea0b6fbc59802f74ba'

  depends_on 'ldns'

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