wok diff xorg-xev/receipt @ rev 19497
Up SliTaz projects: cookutils (838), slitaz-base-files (314), tazlito (439 again, seems failure isn't here).
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Nov 17 01:33:43 2016 +0200 (2016-11-17) |
parents | c514cc4854d8 |
children | c86e41198e76 |
line diff
1.1 --- a/xorg-xev/receipt Wed Jan 19 19:41:12 2011 +0000 1.2 +++ b/xorg-xev/receipt Thu Nov 17 01:33:43 2016 +0200 1.3 @@ -5,14 +5,16 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="print contents of x-server events " 1.6 MAINTAINER="jozee@slitaz.org" 1.7 +LICENSE="MIT" 1.8 SOURCE="xev" 1.9 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.10 -DEPENDS="xorg-libX11" 1.11 -BUILD_DEPENDS="xorg-libX11-dev" 1.12 WEB_SITE="http://xorg.freedesktop.org/" 1.13 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" 1.14 TAGS="utility xorg debug" 1.15 1.16 +DEPENDS="xorg-libX11" 1.17 +BUILD_DEPENDS="xorg-libX11-dev" 1.18 + 1.19 # Rules to configure and make the package.ls sr 1.20 compile_rules() 1.21 { 1.22 @@ -22,13 +24,12 @@ 1.23 --mandir=/usr/share/man \ 1.24 $CONFIGURE_ARGS && 1.25 make && 1.26 - make DESTDIR=$PWD/_pkg install 1.27 + make DESTDIR=$DESTDIR install 1.28 } 1.29 1.30 # Rules to gen a SliTaz package suitable for Tazpkg. 1.31 genpkg_rules() 1.32 { 1.33 mkdir -p $fs/usr 1.34 - cp -a $_pkg/usr/bin $fs/usr 1.35 + cp -a $install/usr/bin $fs/usr 1.36 } 1.37 -