wok-next view gobject-introspection/receipt @ 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 e19ff076dc63
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gobject-introspection"
4 VERSION="1.64.1"
5 CATEGORY="development"
6 SHORT_DESC="Introspection system for GObject-based libraries"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="LGPL2 MIT"
9 WEB_SITE="https://wiki.gnome.org/Projects/GObjectIntrospection"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/gobject-introspection.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
15 COOKOPTS="force-arch" # different .gir
17 BUILD_DEPENDS="cairo-dev glib-dev gtk-doc libffi-dev meson ninja openssl-dev
18 python3-dev util-linux-mount-dev"
19 SPLIT="$PACKAGE-dev"
21 COPY_std="@std *.typelib"
22 COPY_dev="@std @dev @rm"
24 DEPENDS_std="glib libffi python3"
25 DEPENDS_dev="glib-dev gobject-introspection libffi-dev"
27 compile_rules()
28 {
29 # ./configure \
30 # --disable-static \
31 # $CONFIGURE_ARGS &&
32 # fix libtool &&
33 # make &&
34 # make install
36 meson _build \
37 --prefix=/usr &&
38 ninja -C _build &&
39 ninja -C _build install
40 }