93 lines
2.7 KiB
Ruby
93 lines
2.7 KiB
Ruby
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_17.tar.gz"
|
|
sha256 "cb612c9e634275e574fa639737cf63711358cd10b9d0d377f70025653fefdd16"
|
|
license "LGPL-2.1"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "34563201718a065595f5dc04af994a6532c7ecbdd3917522de8464bf84cd88a2" => :catalina
|
|
sha256 "0b63eb46f1834f8dac3b8e8c79e44312b981e88e84da6292e0843202d4ee4e62" => :mojave
|
|
sha256 "d2bde5e02a5b66bcb4749a7d21830d72eddd32eb146e4602a1499b2f3dbd72e5" => :high_sierra
|
|
end
|
|
|
|
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", *std_meson_args, "-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 <appstream-glib.h>
|
|
|
|
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,
|
|
)
|