homebrew-core/Formula/libinfinity.rb

78 lines
2.3 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"
revision 2
bottle do
sha256 "8c9bdd8c7cfb58b1f8c9ce451881c620d574ac749ff0f40e4efa87c0faebba26" => :mojave
sha256 "ea90d469694a6da2dd087ceb5f77fc9294b0ce7cee678d135ad466c3a1ae636d" => :high_sierra
sha256 "6dd59d33bdc050e1e61d5a7a6efa79a83c0130c237f04c678f7e8fe6a455e4df" => :sierra
end
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
-lintl
-lxml2
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end