2012-10-07 00:55:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2013-01-09 23:58:27 +00:00
|
|
|
class Pdns < Formula
|
|
|
|
homepage 'http://wiki.powerdns.com'
|
2013-12-20 17:08:26 +00:00
|
|
|
url 'http://downloads.powerdns.com/releases/pdns-3.3.1.tar.gz'
|
|
|
|
sha1 '555862bf9635d1dcab2c4f3b7569bdd8212ef67f'
|
2012-10-07 00:55:07 +00:00
|
|
|
|
2013-01-09 23:58:27 +00:00
|
|
|
option 'pgsql', 'Enable the PostgreSQL backend'
|
2012-10-07 00:55:07 +00:00
|
|
|
|
2013-01-09 23:58:27 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'lua'
|
|
|
|
depends_on 'sqlite'
|
|
|
|
depends_on :postgresql if build.include? 'pgsql'
|
2012-10-07 00:55:07 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--with-lua",
|
|
|
|
"--with-sqlite3",
|
|
|
|
"--with-sqlite=#{Formula.factory("sqlite").opt_prefix}"]
|
|
|
|
|
|
|
|
# Include the PostgreSQL backend if requested
|
|
|
|
if build.include? "pgsql"
|
|
|
|
args << "--with-modules=gsqlite3 gpgsql"
|
|
|
|
else
|
|
|
|
# SQLite3 backend only is the default
|
|
|
|
args << "--with-modules=gsqlite3"
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
|
|
|
|
# Compilation fails at polarssl if we skip straight to make install
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|