wok diff xorg-iceauth/receipt @ rev 20815
cvs: race condition
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Feb 18 16:14:25 2019 +0100 (2019-02-18) |
parents | c514cc4854d8 |
children | 6aab4c6721ad |
line diff
1.1 --- a/xorg-iceauth/receipt Wed Jan 19 19:41:12 2011 +0000 1.2 +++ b/xorg-iceauth/receipt Mon Feb 18 16:14:25 2019 +0100 1.3 @@ -5,13 +5,15 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="ICE authority file utility" 1.6 MAINTAINER="erjo@slitaz.org" 1.7 -DEPENDS="xorg-libICE" 1.8 -BUILD_DEPENDS="xorg-libICE-dev pkg-config" 1.9 +LICENSE="MIT" 1.10 SOURCE="iceauth" 1.11 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.12 WEB_SITE="http://xorg.freedesktop.org/" 1.13 WGET_URL="http://xorg.freedesktop.org/archive/individual/app/$TARBALL" 1.14 1.15 +DEPENDS="xorg-libICE" 1.16 +BUILD_DEPENDS="xorg-libICE-dev pkg-config" 1.17 + 1.18 # Rules to configure and make the package. 1.19 compile_rules() 1.20 { 1.21 @@ -19,13 +21,13 @@ 1.22 ./configure --prefix=/usr \ 1.23 --infodir=/usr/share/info \ 1.24 --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.25 - make && make DESTDIR=$PWD/_pkg install 1.26 + make && 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 1.33 - cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $install/usr/bin $fs/usr 1.35 } 1.36