homebrew-core/Formula/libinfinity.rb

87 lines
2.7 KiB
Ruby

class Libinfinity < Formula
desc "GObject-based C implementation of the Infinote protocol"
homepage "https://gobby.github.io"
url "http://releases.0x539.de/libinfinity/libinfinity-0.6.8.tar.gz"
sha256 "0c4e7e0e5cb6ad5df4dbe19568de37b100a13e61475cf9d4e0f2a68fcdd2d45b"
license "LGPL-2.1"
revision 2
bottle do
sha256 catalina: "4d367978cb9ee0612c37947080939b3006c5bb7972673cc2c6175242c5809c28"
sha256 mojave: "8c9bdd8c7cfb58b1f8c9ce451881c620d574ac749ff0f40e4efa87c0faebba26"
sha256 high_sierra: "ea90d469694a6da2dd087ceb5f77fc9294b0ce7cee678d135ad466c3a1ae636d"
sha256 sierra: "6dd59d33bdc050e1e61d5a7a6efa79a83c0130c237f04c678f7e8fe6a455e4df"
end
# libinfinity is only used by gobby
# latest 0.7.1 does not work with gobby 0.5.0 due to open issue, https://github.com/gobby/gobby/issues/143
# gobby is disabled per #57501
disable! date: "2020-07-06", because: "is only used by gobby (which has been disabled)"
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "gnutls"
depends_on "gsasl"
depends_on "gtk+3"
# MacPorts patch to fix pam include. This is still applicable to 0.6.4.
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/f8e3d2e4/libinfinity/patch-infinoted-infinoted-pam.c.diff"
sha256 "d5924d6ee90c3aa756e52b97e32345dc1d77afdb5e4e0de8eac2a343d95ade00"
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-gtk3", "--with-inftextgtk", "--with-infgtk"
system "make", "install"
end
test do
(testpath/"test.c").write <<~EOS
#include <libinfinity/common/inf-init.h>
int main(int argc, char *argv[]) {
GError *error = NULL;
gboolean status = inf_init(&error);
return 0;
}
EOS
ENV.libxml2
gettext = Formula["gettext"]
glib = Formula["glib"]
gnutls = Formula["gnutls"]
gsasl = Formula["gsasl"]
libtasn1 = Formula["libtasn1"]
nettle = Formula["nettle"]
flags = %W[
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{gnutls.opt_include}
-I#{gsasl.opt_include}
-I#{include}/libinfinity-0.6
-I#{libtasn1.opt_include}
-I#{nettle.opt_include}
-D_REENTRANT
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{gnutls.opt_lib}
-L#{gsasl.opt_lib}
-L#{lib}
-lglib-2.0
-lgnutls
-lgobject-2.0
-lgsasl
-lgthread-2.0
-linfinity-0.6
-lxml2
]
on_macos do
flags << "-lintl"
end
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end