From 7c8286578c82f631b975e8190eae528f7272c134 Mon Sep 17 00:00:00 2001 From: Tom Schoonjans Date: Thu, 9 May 2019 15:17:35 +0100 Subject: [PATCH] appstream-glib 0.7.15 (new formula) --- Formula/appstream-glib.rb | 83 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 Formula/appstream-glib.rb diff --git a/Formula/appstream-glib.rb b/Formula/appstream-glib.rb new file mode 100644 index 0000000000..77df17da22 --- /dev/null +++ b/Formula/appstream-glib.rb @@ -0,0 +1,83 @@ +class AppstreamGlib < Formula + desc "Helper library for reading and writing AppStream metadata" + homepage "https://github.com/hughsie/appstream-glib" + url "https://github.com/hughsie/appstream-glib/archive/appstream_glib_0_7_15.tar.gz" + sha256 "ad4463e96870accc9a179849555f5c5c4146ec412ec3ecf3c594dce85e027d59" + + depends_on "docbook" => :build + depends_on "docbook-xsl" => :build + depends_on "gobject-introspection" => :build + depends_on "meson" => :build + depends_on "ninja" => :build + depends_on "pkg-config" => :build + depends_on "gdk-pixbuf" + depends_on "glib" + depends_on "json-glib" + depends_on "libarchive" + depends_on "libsoup" + depends_on "util-linux" + + # see https://github.com/hughsie/appstream-glib/issues/258 + patch :DATA + + def install + # Find our docbook catalog + ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog" + + mkdir "build" do + system "meson", "--prefix=#{prefix}", "-Dbuilder=false", "-Drpm=false", "-Ddep11=false", "-Dstemmer=false", ".." + system "ninja", "-v" + system "ninja", "install", "-v" + end + end + + test do + (testpath/"test.c").write <<~EOS + #include + + int main(int argc, char *argv[]) { + AsScreenshot *screen_shot = as_screenshot_new(); + g_assert_nonnull(screen_shot); + return 0; + } + EOS + gdk_pixbuf = Formula["gdk-pixbuf"] + gettext = Formula["gettext"] + glib = Formula["glib"] + flags = %W[ + -I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0 + -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 + -I#{include}/libappstream-glib + -L#{gdk_pixbuf.opt_lib} + -L#{gettext.opt_lib} + -L#{glib.opt_lib} + -L#{lib} + -lappstream-glib + -lgdk_pixbuf-2.0 + -lgio-2.0 + -lglib-2.0 + -lgobject-2.0 + -lintl + ] + system ENV.cc, "test.c", "-o", "test", *flags + system "./test" + system "#{bin}/appstream-util", "--help" + end +end + +__END__ +diff --git a/libappstream-glib/meson.build b/libappstream-glib/meson.build +index 5f726b0..7d29ac8 100644 +--- a/libappstream-glib/meson.build ++++ b/libappstream-glib/meson.build +@@ -136,7 +136,6 @@ asglib = shared_library( + dependencies : deps, + c_args : cargs, + include_directories : include_directories('..'), +- link_args : vflag, + link_depends : mapfile, + install : true, + )