wok-next rev 21696
updated gobject-introspection (1.58.2 -> 1.64.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jun 30 16:37:05 2020 +0100 (2020-06-30) |
parents | f6c9ae4113c0 |
children | 99b2ee64d6fc |
files | gobject-introspection/receipt |
line diff
1.1 --- a/gobject-introspection/receipt Tue Jun 30 15:37:32 2020 +0100 1.2 +++ b/gobject-introspection/receipt Tue Jun 30 16:37:05 2020 +0100 1.3 @@ -1,10 +1,10 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="gobject-introspection" 1.7 -VERSION="1.58.2" 1.8 +VERSION="1.64.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Introspection system for GObject-based libraries" 1.11 -MAINTAINER="devel@slitaz.org" 1.12 +MAINTAINER="maintainer@slitaz.org" 1.13 LICENSE="LGPL2 MIT" 1.14 WEB_SITE="https://wiki.gnome.org/Projects/GObjectIntrospection" 1.15 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/gobject-introspection.html" 1.16 @@ -14,21 +14,27 @@ 1.17 1.18 COOKOPTS="force-arch" # different .gir 1.19 1.20 -BUILD_DEPENDS="glib-dev cairo-dev gtk-doc python-dev util-linux-mount-dev \ 1.21 -openssl-dev libffi-dev" 1.22 +BUILD_DEPENDS="cairo-dev glib-dev gtk-doc libffi-dev meson ninja openssl-dev 1.23 + python3-dev util-linux-mount-dev" 1.24 SPLIT="$PACKAGE-dev" 1.25 1.26 COPY_std="@std *.typelib" 1.27 COPY_dev="@std @dev @rm" 1.28 1.29 -DEPENDS_std="glib libffi python" 1.30 -DEPENDS_dev="gobject-introspection glib-dev libffi-dev" 1.31 +DEPENDS_std="glib libffi python3" 1.32 +DEPENDS_dev="glib-dev gobject-introspection libffi-dev" 1.33 1.34 -compile_rules() { 1.35 - ./configure \ 1.36 - --disable-static \ 1.37 - $CONFIGURE_ARGS && 1.38 - fix libtool && 1.39 - make && 1.40 - make install 1.41 +compile_rules() 1.42 +{ 1.43 +# ./configure \ 1.44 +# --disable-static \ 1.45 +# $CONFIGURE_ARGS && 1.46 +# fix libtool && 1.47 +# make && 1.48 +# make install 1.49 + 1.50 + meson _build \ 1.51 + --prefix=/usr && 1.52 + ninja -C _build && 1.53 + ninja -C _build install 1.54 }