appstream-glib 0.7.15 (new formula)
This commit is contained in:
parent
88c2fb4599
commit
7c8286578c
1 changed files with 83 additions and 0 deletions
83
Formula/appstream-glib.rb
Normal file
83
Formula/appstream-glib.rb
Normal file
|
@ -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 <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,
|
||||
)
|
Loading…
Reference in a new issue