2014-02-26 18:53:48 +00:00
|
|
|
class Getdns < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Modern asynchronous DNS API"
|
2015-06-02 22:38:29 +00:00
|
|
|
homepage "https://getdnsapi.net"
|
2015-07-20 13:11:02 +00:00
|
|
|
url "https://getdnsapi.net/dist/getdns-0.3.1.tar.gz"
|
|
|
|
sha256 "58fd791187d5fd158ba7db1b5f29d4b0274583447f405577c758c7c7751e8883"
|
2014-02-26 18:53:48 +00:00
|
|
|
|
2014-12-15 09:19:41 +00:00
|
|
|
head "https://github.com/getdnsapi/getdns.git"
|
|
|
|
|
2014-03-25 14:58:59 +00:00
|
|
|
bottle do
|
2015-06-03 13:51:01 +00:00
|
|
|
cellar :any
|
2015-07-20 15:40:51 +00:00
|
|
|
sha256 "66be49d1fe111e14d181aa1054041fa14b87a5cddabb0333bbb6cdc29e4c580f" => :yosemite
|
|
|
|
sha256 "5910d400f5e2f83b49ccc01379691e7a2b2300af815bc517d079811f7968fcf9" => :mavericks
|
|
|
|
sha256 "b3eb2d9b1db54455204c1bdb0e40ea5b44cc1fe9b4ef6de13085e9553c1f0366" => :mountain_lion
|
2014-03-25 14:58:59 +00:00
|
|
|
end
|
|
|
|
|
2015-06-02 22:38:29 +00:00
|
|
|
depends_on "openssl"
|
2014-02-26 18:53:48 +00:00
|
|
|
depends_on "ldns"
|
|
|
|
depends_on "unbound"
|
|
|
|
depends_on "libidn"
|
2014-04-01 15:45:36 +00:00
|
|
|
depends_on "libevent" => :optional
|
2014-02-26 18:53:48 +00:00
|
|
|
depends_on "libuv" => :optional
|
2014-04-01 15:45:36 +00:00
|
|
|
depends_on "libev" => :optional
|
2014-02-26 18:53:48 +00:00
|
|
|
|
|
|
|
def install
|
2015-06-02 22:38:29 +00:00
|
|
|
args = [
|
|
|
|
"--with-ssl=#{Formula["openssl"].opt_prefix}",
|
|
|
|
"--with-trust-anchor=#{etc}/getdns-root.key"
|
|
|
|
]
|
2014-04-01 15:45:36 +00:00
|
|
|
args << "--with-libevent" if build.with? "libevent"
|
|
|
|
args << "--with-libev" if build.with? "libev"
|
|
|
|
args << "--with-libuv" if build.with? "libuv"
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}", *args
|
2014-02-26 18:53:48 +00:00
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
|
|
#include <getdns/getdns.h>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
getdns_context *context;
|
|
|
|
getdns_dict *api_info;
|
|
|
|
char *pp;
|
|
|
|
getdns_return_t r = getdns_context_create(&context, 0);
|
|
|
|
if (r != GETDNS_RETURN_GOOD) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
api_info = getdns_context_get_api_information(context);
|
|
|
|
if (!api_info) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
pp = getdns_pretty_print_dict(api_info);
|
|
|
|
if (!pp) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
puts(pp);
|
2014-03-25 14:55:22 +00:00
|
|
|
free(pp);
|
2014-02-26 18:53:48 +00:00
|
|
|
getdns_dict_destroy(api_info);
|
|
|
|
getdns_context_destroy(context);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
system ENV.cc, "-I#{include}", "-o", "test", "test.c", "-lgetdns"
|
|
|
|
system "./test"
|
|
|
|
end
|
|
|
|
end
|