81 lines
2.4 KiB
Ruby
81 lines
2.4 KiB
Ruby
class Getdns < Formula
|
|
desc "Modern asynchronous DNS API"
|
|
homepage "https://getdnsapi.net"
|
|
url "https://getdnsapi.net/releases/getdns-1-2-0/getdns-1.2.0.tar.gz"
|
|
sha256 "06e6494b5d8b9404f439d5a98a3ab8f1f4b3557fb7aa3db005b021a6289b4229"
|
|
|
|
bottle do
|
|
sha256 "18a667520c470eb6af10f97c005c74ca348965642cc766df2db7804546e986b4" => :high_sierra
|
|
sha256 "6a1fec44c69fb72c9f0f8976ae595793ffc5d7a564b27fd322ae8855d797e43d" => :sierra
|
|
sha256 "af93db1657d757e1dc92ed41335ca509b539e4bf2c7414aac08f350c7475ccc9" => :el_capitan
|
|
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 "openssl"
|
|
depends_on "unbound" => :recommended
|
|
depends_on "libidn" => :recommended
|
|
depends_on "libevent" => :recommended
|
|
depends_on "libuv" => :optional
|
|
depends_on "libev" => :optional
|
|
|
|
def install
|
|
if build.head?
|
|
system "glibtoolize", "-ci"
|
|
system "autoreconf", "-fi"
|
|
end
|
|
|
|
args = [
|
|
"--with-ssl=#{Formula["openssl"].opt_prefix}",
|
|
"--with-trust-anchor=#{etc}/getdns-root.key",
|
|
"--without-stubby",
|
|
]
|
|
args << "--enable-stub-only" if build.without? "unbound"
|
|
args << "--without-libidn" if build.without? "libidn"
|
|
args << "--with-libevent" if build.with? "libevent"
|
|
args << "--with-libuv" if build.with? "libuv"
|
|
args << "--with-libev" if build.with? "libev"
|
|
|
|
system "./configure", "--prefix=#{prefix}", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#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
|