wok diff xorg-imake/receipt @ rev 17938
Up to latest: tazinst-gui, tazinst, tazpanel, tazpkg, tazlito
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 15 09:36:43 2015 +0200 (2015-04-15) |
parents | a512bd9350d3 |
children | 814c58f64f83 |
line diff
1.1 --- a/xorg-imake/receipt Sun Jan 30 03:08:26 2011 +0000 1.2 +++ b/xorg-imake/receipt Wed Apr 15 09:36:43 2015 +0200 1.3 @@ -5,13 +5,15 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="X imake utility." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 -DEPENDS="xorg-cf-files" 1.8 -BUILD_DEPENDS="xorg-gccmakedep xorg-makedepend pkg-config xorg-xproto perl" 1.9 +LICENSE="MIT" 1.10 SOURCE="imake" 1.11 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.12 WEB_SITE="http://www.x.org/" 1.13 WGET_URL="$XORG_MIRROR/util/$TARBALL" 1.14 1.15 +DEPENDS="xorg-cf-files" 1.16 +BUILD_DEPENDS="xorg-gccmakedep xorg-makedepend pkg-config xorg-xproto perl" 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 --mandir=/usr/share/man \ 1.23 $CONFIGURE_ARGS 1.24 make 1.25 - make DESTDIR=$PWD/_pkg install 1.26 - chmod +x $PWD/_pkg/usr/bin/* 1.27 + make DESTDIR=$DESTDIR install 1.28 + chmod +x $DESTDIR/usr/bin/* 1.29 } 1.30 1.31 # Rules to gen a SliTaz package suitable for Tazpkg. 1.32 genpkg_rules() 1.33 { 1.34 mkdir -p $fs/usr 1.35 - cp -a $_pkg/usr/bin $fs/usr 1.36 + cp -a $install/usr/bin $fs/usr 1.37 }