wok-current diff atkmm/receipt @ rev 25698

Fix ntfs-3g receipt
author Stanislas Leduc <shann@slitaz.org>
date Tue Apr 16 19:01:01 2024 +0000 (2 months ago)
parents 68cf96abc146
children
line diff
     1.1 --- a/atkmm/receipt	Mon Jul 05 15:00:07 2021 +0000
     1.2 +++ b/atkmm/receipt	Tue Apr 16 19:01:01 2024 +0000
     1.3 @@ -1,17 +1,18 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="atkmm"
     1.7 -VERSION="2.22.6"
     1.8 +VERSION="2.28.2"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="C++ interface for the popular Accessibility toolkit."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="LGPL2.1"
    1.13  BUILD_DEPENDS="atk-dev glib-dev glibmm-dev libgiomm-dev pkg-config"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.16  WEB_SITE="https://www.gnome.org/"
    1.17  WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.18  
    1.19  DEPENDS="atk libsigc++"
    1.20 +BUILD_DEPENDS="atk-dev glibmm-dev libsigc++-dev meson"
    1.21  
    1.22  current_version()
    1.23  {
    1.24 @@ -22,9 +23,14 @@
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	cd $src
    1.29 -	./configure $CONFIGURE_ARGS && 
    1.30 -	make && 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 +        ninja -C build &&
    1.38 +        ninja -C build install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.