homebrew-core/Formula/glib-openssl.rb
2019-09-09 09:38:37 +02:00

69 lines
2.2 KiB
Ruby

class GlibOpenssl < Formula
desc "OpenSSL GIO module for glib"
homepage "https://launchpad.net/glib-networking"
url "https://download.gnome.org/sources/glib-openssl/2.50/glib-openssl-2.50.8.tar.xz"
sha256 "869f08e4e9a719c1df411c2fb5554400f6b24a9db0cb94c4359db8dad18d185f"
revision 2
bottle do
sha256 "b809108f7033c4b5e9274854097750e3ee3e061a3944cbd3996680c7475b3b53" => :mojave
sha256 "57305cc3901ea69952cbeed622b31d31f2a9bf71aa0555346de4625ac9f88870" => :high_sierra
sha256 "a5b138a20fdcce17354f23bfb33513149ab103784272faccc8006a53aa18786b" => :sierra
end
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "openssl@1.1"
def install
# Install files to `lib` instead of `HOMEBREW_PREFIX/lib`.
inreplace "configure", "$($PKG_CONFIG --variable giomoduledir gio-2.0)", lib/"gio/modules"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--disable-static",
"--prefix=#{prefix}",
"--with-ca-certificates=#{etc}/openssl/cert.pem"
system "make", "install"
# Delete the cache, will regenerate it in post_install
rm lib/"gio/modules/giomodule.cache"
end
def post_install
system Formula["glib"].opt_bin/"gio-querymodules", HOMEBREW_PREFIX/"lib/gio/modules"
end
test do
(testpath/"gtls-test.c").write <<~EOS
#include <gio/gio.h>
#include <string.h>
int main (int argc, char *argv[])
{
GType type = g_tls_backend_get_certificate_type(g_tls_backend_get_default());
if (strcmp(g_type_name(type), "GTlsCertificateOpenssl") == 0)
return 0;
else
return 1;
}
EOS
# From `pkg-config --cflags --libs gio-2.0`
gettext = Formula["gettext"]
glib = Formula["glib"]
flags = %W[
-D_REENTRANT
-I#{gettext.opt_include}
-I#{glib.opt_include}/gio-unix-2.0/
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-lgio-2.0
-lgobject-2.0
-lglib-2.0
-lintl
]
system ENV.cc, "gtls-test.c", "-o", "gtls-test", *flags
system "./gtls-test"
end
end