homebrew-core/Formula/gom.rb
2018-03-22 06:24:56 -07:00

69 lines
1.8 KiB
Ruby

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 4
bottle do
cellar :any
sha256 "4af3ad57e78007aa38bbbf602df75c93e49699bff203f6b2c7085885ed5ece4f" => :high_sierra
sha256 "29436d1d80204799c37940197aab65182dadbfe1be66431c9a5f72404528eaa1" => :sierra
sha256 "536b1b030e14db2cc7540e0505a251b9227b79c6dd2449a0d6a980e81487da53" => :el_capitan
end
depends_on "gobject-introspection" => :build
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "gdk-pixbuf"
depends_on "gettext"
depends_on "glib"
depends_on "py3cairo"
depends_on "pygobject3"
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 <gom/gom.h>
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