wok-6.x rev 19540
Up desktop-file-utils (0.23)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Dec 05 02:39:57 2016 +0200 (2016-12-05) |
parents | eaad6c4ccbaa |
children | 54759b13f3b3 |
files | desktop-file-utils-extra/description.txt desktop-file-utils-extra/receipt desktop-file-utils/description.txt desktop-file-utils/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/desktop-file-utils-extra/description.txt Mon Dec 05 02:39:57 2016 +0200 1.3 @@ -0,0 +1,11 @@ 1.4 +Some utilities to make dealing with .desktop files easier: 1.5 + * `update-desktop-database` -- build cache database of MIME types handled by 1.6 + desktop files 1.7 + * `desktop-file-validate` -- validate desktop entry files according to the 1.8 + Desktop Entry specification 1.1. For information about this specification, 1.9 + see: http://freedesktop.org/wiki/Specifications/desktop-entry-spec 1.10 + * `desktop-file-install` -- install a desktop file 1.11 + * `desktop-file-edit` -- edit a desktop file 1.12 + 1.13 +Utility `update-desktop-database` you can find in the desktop-file-utils 1.14 +package.
2.1 --- a/desktop-file-utils-extra/receipt Sat Dec 03 21:08:29 2016 +0000 2.2 +++ b/desktop-file-utils-extra/receipt Mon Dec 05 02:39:57 2016 +0200 2.3 @@ -1,19 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="desktop-file-utils-extra" 2.7 -VERSION="0.21" 2.8 -CATEGORY="x-window" 2.9 +VERSION="0.23" 2.10 +CATEGORY="system-tools" 2.11 SHORT_DESC="Extra desktop file utils (install and validate)." 2.12 -WANTED="desktop-file-utils" 2.13 MAINTAINER="pankso@slitaz.org" 2.14 LICENSE="GPL2" 2.15 -WEB_SITE="http://www.freedesktop.org/wiki/Software/desktop-file-utils" 2.16 +WEB_SITE="https://www.freedesktop.org/wiki/Software/desktop-file-utils/" 2.17 2.18 -DEPENDS="glib coreutils-operations" 2.19 +WANTED="desktop-file-utils" 2.20 +DEPENDS="glib glibc-base pcre" 2.21 2.22 # Rules to gen a SliTaz package suitable for Tazpkg. 2.23 genpkg_rules() 2.24 { 2.25 - mkdir -p $fs/usr/bin 2.26 - cp -a $install/usr/bin/desktop-file-* $fs/usr/bin 2.27 + cook_copy_files desktop-file-edit desktop-file-edit desktop-file-validate 2.28 }
3.1 --- a/desktop-file-utils/description.txt Sat Dec 03 21:08:29 2016 +0000 3.2 +++ b/desktop-file-utils/description.txt Mon Dec 05 02:39:57 2016 +0200 3.3 @@ -1,6 +1,11 @@ 3.4 Some utilities to make dealing with .desktop files easier: 3.5 - * update-desktop-database -- update the desktop-MIME mapping 3.6 - * desktop-file-validate -- validate a desktop file 3.7 - * desktop-file-install -- install a desktop file, munging en route. 3.8 + * `update-desktop-database` -- build cache database of MIME types handled by 3.9 + desktop files 3.10 + * `desktop-file-validate` -- validate desktop entry files according to the 3.11 + Desktop Entry specification 1.1. For information about this specification, 3.12 + see: http://freedesktop.org/wiki/Specifications/desktop-entry-spec 3.13 + * `desktop-file-install` -- install a desktop file 3.14 + * `desktop-file-edit` -- edit a desktop file 3.15 3.16 -This package contains update-desktop-database only. 3.17 +This package contains `update-desktop-database` only, other utilities you can 3.18 +find in the desktop-file-utils-extra package.
4.1 --- a/desktop-file-utils/receipt Sat Dec 03 21:08:29 2016 +0000 4.2 +++ b/desktop-file-utils/receipt Mon Dec 05 02:39:57 2016 +0200 4.3 @@ -1,30 +1,27 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="desktop-file-utils" 4.7 -VERSION="0.21" 4.8 -CATEGORY="x-window" 4.9 +VERSION="0.23" 4.10 +CATEGORY="system-tools" 4.11 SHORT_DESC="Utilities for .desktop files (update-desktop-database)" 4.12 MAINTAINER="pankso@slitaz.org" 4.13 LICENSE="GPL2" 4.14 +WEB_SITE="https://www.freedesktop.org/wiki/Software/desktop-file-utils/" 4.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 4.16 -WEB_SITE="http://www.freedesktop.org/wiki/Software/desktop-file-utils" 4.17 -WGET_URL="http://www.freedesktop.org/software/desktop-file-utils/releases/$TARBALL" 4.18 +WGET_URL="https://www.freedesktop.org/software/desktop-file-utils/releases/$TARBALL" 4.19 4.20 -DEPENDS="glib" 4.21 +DEPENDS="glib glibc-base pcre" 4.22 BUILD_DEPENDS="pkg-config glib-dev" 4.23 +SPLIT="desktop-file-utils-extra" 4.24 4.25 # Rules to configure and make the package. 4.26 compile_rules() 4.27 { 4.28 - ./configure \ 4.29 - --prefix=/usr \ 4.30 - $CONFIGURE_ARGS && 4.31 - make DESTDIR=$DESTDIR install 4.32 + ./configure $CONFIGURE_ARGS && make && make install 4.33 } 4.34 4.35 # Rules to gen a SliTaz package suitable for Tazpkg. 4.36 genpkg_rules() 4.37 { 4.38 - mkdir -p $fs/usr/bin 4.39 - cp $install/usr/bin/update-desktop-database $fs/usr/bin 4.40 + cook_copy_files update-desktop-database 4.41 }