wok-current diff libxkbcommon/receipt @ rev 25672

patch tazpkg, upgrade core pkgs first
author Stanislas Leduc <shann@slitaz.org>
date Sun Mar 03 17:58:42 2024 +0000 (6 months ago)
parents ede1d184d5c5
children
line diff
     1.1 --- a/libxkbcommon/receipt	Mon Feb 14 17:51:14 2022 +0000
     1.2 +++ b/libxkbcommon/receipt	Sun Mar 03 17:58:42 2024 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libxkbcommon"
     1.7 -VERSION="0.8.4"
     1.8 +VERSION="1.3.1"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Keyboard handling library using XKB data."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -12,7 +12,8 @@
    1.13  WGET_URL="https://xkbcommon.org/download/$TARBALL"
    1.14  
    1.15  DEPENDS="libxcb xorg-xkeyboard-config"
    1.16 -BUILD_DEPENDS="bison libxcb-dev xorg-util-macros xorg-xkeyboard-config-dev"
    1.17 +BUILD_DEPENDS="bison libxcb-dev xorg-util-macros \
    1.18 +xorg-xkeyboard-config-dev meson"
    1.19  
    1.20  # What is the latest version available today?
    1.21  current_version()
    1.22 @@ -24,11 +25,16 @@
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	./configure						\
    1.27 -		--with-xkb-config-root=/usr/share/X11/xkb	\
    1.28 -		$CONFIGURE_ARGS &&
    1.29 -	make -j 1 &&
    1.30 -	make install
    1.31 +        meson build \
    1.32 +            --prefix=/usr \
    1.33 +            --libdir=lib \
    1.34 +            --bindir=/usr/bin \
    1.35 +            --sbindir=/usr/sbin \
    1.36 +            --buildtype=release \
    1.37 +	-Denable-docs=false \
    1.38 +	-Denable-wayland=false &&
    1.39 +        ninja -C build &&
    1.40 +        ninja -C build install
    1.41  }
    1.42  
    1.43  # Rules to gen a SliTaz package suitable for Tazpkg.