69 lines
2.3 KiB
Ruby
69 lines
2.3 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"
|
|
|
|
bottle do
|
|
sha256 "4f3163fb50a273e93a19b7136f1235517da5450d610c7d304591060f447eb93e" => :mojave
|
|
sha256 "7e79387127349d9976e104c0580b0efaf836865e15ede603232ecd5b80f3edb8" => :high_sierra
|
|
sha256 "2c6f6a96f2643fdfdc772c460ca7e9ec08783bf02f89a6312a02624dbba1a82a" => :sierra
|
|
sha256 "5f808a52d9c9fcebeb8143701c0e4dae92260f7c1233795069972b80718ac841" => :el_capitan
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "glib"
|
|
depends_on "openssl"
|
|
|
|
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
|