wok diff xorg-xdpyinfo/receipt @ rev 21815
ffmpeg-dev: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 19 10:41:53 2019 +0200 (2019-08-19) |
parents | c514cc4854d8 |
children | f0472a14b332 |
line diff
1.1 --- a/xorg-xdpyinfo/receipt Wed Jan 19 19:41:12 2011 +0000 1.2 +++ b/xorg-xdpyinfo/receipt Mon Aug 19 10:41:53 2019 +0200 1.3 @@ -5,15 +5,17 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="display information utility for X-server" 1.6 MAINTAINER="jozee@slitaz.org" 1.7 +LICENSE="MIT" 1.8 SOURCE="xdpyinfo" 1.9 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.10 +WEB_SITE="http://xorg.freedesktop.org/" 1.11 +WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" 1.12 +TAGS="utility xorg display" 1.13 + 1.14 DEPENDS="xorg-libXtst xorg-libXxf86vm xorg-libXrender \ 1.15 xorg-libXinerama xorg-libXp" 1.16 BUILD_DEPENDS="xorg-libXtst-dev xorg-libXxf86vm-dev \ 1.17 xorg-libXrender-dev xorg-libXinerama-dev xorg-libXp-dev" 1.18 -WEB_SITE="http://xorg.freedesktop.org/" 1.19 -WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" 1.20 -TAGS="utility xorg display" 1.21 1.22 # Rules to configure and make the package.ls sr 1.23 compile_rules() 1.24 @@ -24,14 +26,12 @@ 1.25 --mandir=/usr/share/man \ 1.26 $CONFIGURE_ARGS && 1.27 make && 1.28 - make DESTDIR=$PWD/_pkg install 1.29 + make DESTDIR=$DESTDIR install 1.30 } 1.31 1.32 # Rules to gen a SliTaz package suitable for Tazpkg. 1.33 genpkg_rules() 1.34 { 1.35 mkdir -p $fs/usr 1.36 - cp -a $_pkg/usr/bin $fs/usr 1.37 - 1.38 + cp -a $install/usr/bin $fs/usr 1.39 } 1.40 -