class Gom < Formula desc "GObject wrapper around SQLite" homepage "https://wiki.gnome.org/Projects/Gom" url "https://download.gnome.org/sources/gom/0.3/gom-0.3.3.tar.xz" sha256 "ac57e34b5fe273ed306efaeabb346712c264e341502913044a782cdf8c1036d8" revision 2 bottle do cellar :any sha256 "59bf8f2df591d81a4f0b5114b94cca50a1dd61c5417d1e5947838e4e9e51647b" => :high_sierra sha256 "6dba89366f97b276e59cc3ea2bc3f8a665e3986e7b7b7e0cb46699bc2aae3a14" => :sierra sha256 "3d9c074d6ffe1859fb6d0ddbbd5264fa10316472e2b1e1a5b9af8ab5b9d9afc3" => :el_capitan end depends_on "meson" => :build depends_on "ninja" => :build depends_on "gdk-pixbuf" depends_on "gettext" depends_on "glib" depends_on "gobject-introspection" depends_on "py3cairo" depends_on "pygobject3" => "with-python" depends_on "python" depends_on "sqlite" def install ENV.refurbish_args pyver = Language::Python.major_minor_version "python3" # prevent sandbox violation inreplace "bindings/python/meson.build", "install_dir: pygobject_override_dir", "install_dir: '#{lib}/python#{pyver}/site-packages'" mkdir "build" do system "meson", "--prefix=#{prefix}", ".." system "ninja", "install" end end test do (testpath/"test.c").write <<~EOS #include int main(int argc, char *argv[]) { GType type = gom_error_get_type(); return 0; } EOS gettext = Formula["gettext"] glib = Formula["glib"] flags = %W[ -I#{gettext.opt_include} -I#{glib.opt_include}/glib-2.0 -I#{glib.opt_lib}/glib-2.0/include -I#{include}/gom-1.0 -L#{gettext.opt_lib} -L#{glib.opt_lib} -L#{lib} -lglib-2.0 -lgobject-2.0 -lgom-1.0 -lintl ] system ENV.cc, "test.c", "-o", "test", *flags system "./test" end end