gnome.org/json-glib (#4097)

* new file:   projects/gnome.org/json-glib/package.yml
	new file:   projects/gnome.org/json-glib/test.c

* wip

* wip
This commit is contained in:
Andrew 2023-11-18 22:39:01 +02:00 committed by GitHub
parent 8088ff301c
commit 7bf675f162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,42 @@
distributable:
url: https://download.gnome.org/sources/json-glib/{{version.marketing}}/json-glib-{{version}}.tar.xz
strip-components: 1
versions:
url: https://download.gnome.org/sources/json-glib/cache.json
match: /json-glib-\d+\.\d+\.\d+\.tar\.xz/
strip:
- /^json-glib-/
- /\.tar\.xz/
dependencies:
gnome.org/glib: ^2.78
build:
dependencies:
gnu.org/gettext: '*'
gnome.org/gobject-introspection: '*'
mesonbuild.com: '*'
ninja-build.org: '*'
script:
- meson setup build $MESON_ARGS
- meson compile -C build --verbose
- meson install -C build
- run: ln -s json-glib-1.0/json-glib json-glib
working-directory: "{{prefix}}/include"
env:
MESON_ARGS:
- --prefix="{{prefix}}"
- --libdir="{{prefix}}/lib"
- --buildtype=release
- --wrap-mode=nofallback
- -Dintrospection=enabled
- -Dman=false
test:
script:
- cc test.c $ARGS -o test
- ./test
env:
ARGS:
- -D_REENTRANT
- -lgio-2.0
- -lglib-2.0
- -lgobject-2.0
- -ljson-glib-1.0

View file

@ -0,0 +1,6 @@
#include <json-glib/json-glib.h>
int main(int argc, char *argv[]) {
JsonParser *parser = json_parser_new();
return 0;
}