wok rev 24474
updated desktop-file-utils and desktop-file-utils-extra (0.24 -> 0.26)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 17 17:07:56 2022 +0100 (2022-02-17) |
parents | 8f910544a91e |
children | 7efe09103840 |
files | desktop-file-utils-extra/receipt desktop-file-utils/receipt |
line diff
1.1 --- a/desktop-file-utils-extra/receipt Thu Feb 17 15:55:17 2022 +0100 1.2 +++ b/desktop-file-utils-extra/receipt Thu Feb 17 17:07:56 2022 +0100 1.3 @@ -1,14 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="desktop-file-utils-extra" 1.7 -VERSION="0.24" 1.8 +VERSION="0.26" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Extra desktop file utils (install and validate)." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL2" 1.13 WEB_SITE="https://www.freedesktop.org/wiki/Software/desktop-file-utils/" 1.14 1.15 -DEPENDS="glib glibc-base pcre" 1.16 +DEPENDS="gcc83-lib-base glib glibc-base pcre" 1.17 WANTED="desktop-file-utils" 1.18 1.19 # Rules to gen a SliTaz package suitable for Tazpkg.
2.1 --- a/desktop-file-utils/receipt Thu Feb 17 15:55:17 2022 +0100 2.2 +++ b/desktop-file-utils/receipt Thu Feb 17 17:07:56 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="desktop-file-utils" 2.7 -VERSION="0.24" 2.8 +VERSION="0.26" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Utilities for .desktop files (update-desktop-database)." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 @@ -11,8 +11,8 @@ 2.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.14 WGET_URL="https://www.freedesktop.org/software/desktop-file-utils/releases/$TARBALL" 2.15 2.16 -DEPENDS="glib glibc-base pcre" 2.17 -BUILD_DEPENDS="glib-dev pkg-config" 2.18 +DEPENDS="gcc83-lib-base glib glibc-base pcre" 2.19 +BUILD_DEPENDS="gcc83 glib-dev meson pkg-config" 2.20 2.21 SPLIT="desktop-file-utils-extra" 2.22 2.23 @@ -25,9 +25,13 @@ 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - ./configure $CONFIGURE_ARGS && 2.28 - make && 2.29 - make install 2.30 + export CC=gcc-83 2.31 + export CXX=g++-83 2.32 + 2.33 + meson _build \ 2.34 + --prefix=/usr && 2.35 + ninja -C _build && 2.36 + ninja -C _build install 2.37 } 2.38 2.39 # Rules to gen a SliTaz package suitable for Tazpkg.