homebrew-core/Formula/getdns.rb
2019-01-11 18:34:53 +01:00

74 lines
2.1 KiB
Ruby

class Getdns < Formula
desc "Modern asynchronous DNS API"
homepage "https://getdnsapi.net"
url "https://getdnsapi.net/releases/getdns-1-5-1/getdns-1.5.1.tar.gz"
sha256 "5686e61100599c309ce03535f9899a5a3d94a82cc08d10718e2cd73ad3dc28af"
bottle do
cellar :any
sha256 "cd82c6893f6ffddff97633386d9c11b119dfc9af710b824614f3e4c2fd112a2d" => :mojave
sha256 "9725f66c91e85bfc751414212a6b554db02129902db9c3bc33f53c9e47d001a1" => :high_sierra
sha256 "5c338b509bd578da7149338ea382dfbd12fcbcfd3b36819436dc09cc3cd67492" => :sierra
end
head do
url "https://github.com/getdnsapi/getdns.git", :branch => "develop"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "libevent"
depends_on "libidn"
depends_on "openssl"
depends_on "unbound"
def install
if build.head?
system "glibtoolize", "-ci"
system "autoreconf", "-fi"
end
system "./configure", "--prefix=#{prefix}",
"--with-libevent",
"--with-ssl=#{Formula["openssl"].opt_prefix}",
"--with-trust-anchor=#{etc}/getdns-root.key",
"--without-stubby"
system "make"
ENV.deparallelize
system "make", "install"
end
test do
(testpath/"test.c").write <<~EOS
#include <getdns/getdns.h>
#include <stdio.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);
free(pp);
getdns_dict_destroy(api_info);
getdns_context_destroy(context);
return 0;
}
EOS
system ENV.cc, "-I#{include}", "-o", "test", "test.c", "-L#{lib}", "-lgetdns"
system "./test"
end
end