wok-6.x diff desktop-file-utils/receipt @ rev 15645
wpa_supplicant: fail safe post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Dec 10 13:16:06 2013 +0000 (2013-12-10) |
parents | 6f9ba9c78afe |
children | c9e270dd464f |
line diff
1.1 --- a/desktop-file-utils/receipt Mon Feb 04 12:44:22 2013 +0000 1.2 +++ b/desktop-file-utils/receipt Tue Dec 10 13:16:06 2013 +0000 1.3 @@ -4,13 +4,15 @@ 1.4 VERSION="0.21" 1.5 CATEGORY="x-window" 1.6 SHORT_DESC="Desktop file utils from Freedesktop (update-desktop-database)." 1.7 -DEPENDS="glib" 1.8 -BUILD_DEPENDS="pkg-config glib-dev" 1.9 MAINTAINER="pankso@slitaz.org" 1.10 +LICENSE="GPL2" 1.11 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.12 WEB_SITE="http://www.freedesktop.org/wiki/Software/desktop-file-utils" 1.13 WGET_URL="http://www.freedesktop.org/software/desktop-file-utils/releases/$TARBALL" 1.14 1.15 +DEPENDS="glib" 1.16 +BUILD_DEPENDS="pkg-config glib-dev" 1.17 + 1.18 # Rules to configure and make the package. 1.19 compile_rules() 1.20 { 1.21 @@ -18,12 +20,12 @@ 1.22 ./configure \ 1.23 --prefix=/usr \ 1.24 $CONFIGURE_ARGS && 1.25 - make DESTDIR=$PWD/_pkg install 1.26 + make DESTDIR=$DESTDIR install 1.27 } 1.28 1.29 # Rules to gen a SliTaz package suitable for Tazpkg. 1.30 genpkg_rules() 1.31 { 1.32 mkdir -p $fs/usr/bin 1.33 - cp $_pkg/usr/bin/update-desktop-database $fs/usr/bin 1.34 + cp $install/usr/bin/update-desktop-database $fs/usr/bin 1.35 }