homebrew-core/Formula/pdns.rb
2016-02-03 21:14:05 +00:00

55 lines
1.5 KiB
Ruby

class Pdns < Formula
desc "Authoritative nameserver"
homepage "https://www.powerdns.com"
url "https://downloads.powerdns.com/releases/pdns-3.4.8.tar.bz2"
sha256 "4f818fd09bff89625b4317cc7c05445f6e7bd9ea8d21e7eefeaaca07b8b0cd9f"
bottle do
sha256 "f6ecaa7fdac97b5d0210c5b245b6d322c3fbbabe9f1de7d1be7a05e50c5731ff" => :el_capitan
sha256 "eeb9f40d26d2c433c65ce9bbbdb0766159ee1a8d7636abf3752bf49e8a79ddc4" => :yosemite
sha256 "01bfafddc5e3cea395c093869b890101d8a1e3d590646111db06211eb849d14d" => :mavericks
end
head do
url "https://github.com/powerdns/pdns.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
depends_on "ragel"
end
option "with-pgsql", "Enable the PostgreSQL backend"
deprecated_option "pgsql" => "with-pgsql"
depends_on "pkg-config" => :build
depends_on "boost"
depends_on "lua"
depends_on "sqlite"
depends_on :postgresql if build.with? "pgsql"
def install
# https://github.com/Homebrew/homebrew/pull/33739
ENV.deparallelize
args = ["--prefix=#{prefix}",
"--with-lua",
"--with-sqlite3"]
# Include the PostgreSQL backend if requested
if build.with? "pgsql"
args << "--with-modules=gsqlite3 gpgsql"
else
# SQLite3 backend only is the default
args << "--with-modules=gsqlite3"
end
system "./bootstrap" if build.head?
system "./configure", *args
# Compilation fails at polarssl if we skip straight to make install
system "make"
system "make", "install"
end
end