# HG changeset patch # User Hans-G?nter Theisgen # Date 1593531425 -3600 # Node ID 64897b237b597be9e0f54058d048aa120cdd7613 # Parent f6c9ae4113c0e3245fee41b9577fd79346928fa8 updated gobject-introspection (1.58.2 -> 1.64.1) diff -r f6c9ae4113c0 -r 64897b237b59 gobject-introspection/receipt --- a/gobject-introspection/receipt Tue Jun 30 15:37:32 2020 +0100 +++ b/gobject-introspection/receipt Tue Jun 30 16:37:05 2020 +0100 @@ -1,10 +1,10 @@ # SliTaz package receipt v2. PACKAGE="gobject-introspection" -VERSION="1.58.2" +VERSION="1.64.1" CATEGORY="development" SHORT_DESC="Introspection system for GObject-based libraries" -MAINTAINER="devel@slitaz.org" +MAINTAINER="maintainer@slitaz.org" LICENSE="LGPL2 MIT" WEB_SITE="https://wiki.gnome.org/Projects/GObjectIntrospection" LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/gobject-introspection.html" @@ -14,21 +14,27 @@ COOKOPTS="force-arch" # different .gir -BUILD_DEPENDS="glib-dev cairo-dev gtk-doc python-dev util-linux-mount-dev \ -openssl-dev libffi-dev" +BUILD_DEPENDS="cairo-dev glib-dev gtk-doc libffi-dev meson ninja openssl-dev + python3-dev util-linux-mount-dev" SPLIT="$PACKAGE-dev" COPY_std="@std *.typelib" COPY_dev="@std @dev @rm" -DEPENDS_std="glib libffi python" -DEPENDS_dev="gobject-introspection glib-dev libffi-dev" +DEPENDS_std="glib libffi python3" +DEPENDS_dev="glib-dev gobject-introspection libffi-dev" -compile_rules() { - ./configure \ - --disable-static \ - $CONFIGURE_ARGS && - fix libtool && - make && - make install +compile_rules() +{ +# ./configure \ +# --disable-static \ +# $CONFIGURE_ARGS && +# fix libtool && +# make && +# make install + + meson _build \ + --prefix=/usr && + ninja -C _build && + ninja -C _build install }