wok diff xorg-xload/receipt @ rev 13425
ipxe: update #!pxe script
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 04 10:43:24 2012 +0200 (2012-10-04) |
parents | 02bbaa9d12ba |
children | eb8067417980 |
line diff
1.1 --- a/xorg-xload/receipt Mon Apr 04 01:29:52 2011 +0200 1.2 +++ b/xorg-xload/receipt Thu Oct 04 10:43:24 2012 +0200 1.3 @@ -1,30 +1,31 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-xload" 1.7 -VERSION="1.1.0" 1.8 +VERSION="1.1.1" 1.9 CATEGORY="x-window" 1.10 SHORT_DESC="X app to show system resources usage." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 -DEPENDS="xorg-libXaw" 1.13 -BUILD_DEPENDS="xorg-libXaw-dev" 1.14 SOURCE="xload" 1.15 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.16 WEB_SITE="http://www.x.org/" 1.17 WGET_URL="$XORG_MIRROR/app/$TARBALL" 1.18 1.19 +DEPENDS="xorg-libXaw" 1.20 +BUILD_DEPENDS="xorg-libXaw-dev" 1.21 + 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 cd $src 1.26 - ./configure --prefix=/usr --mandir=/usr/share/man \ 1.27 - $CONFIGURE_ARGS && 1.28 - make && 1.29 - make DESTDIR=$PWD/_pkg install 1.30 + ./configure \ 1.31 + --mandir=/usr/share/man \ 1.32 + $CONFIGURE_ARGS && 1.33 + make && make install 1.34 } 1.35 1.36 # Rules to gen a SliTaz package suitable for Tazpkg. 1.37 genpkg_rules() 1.38 { 1.39 mkdir -p $fs/usr 1.40 - cp -a $_pkg/usr/bin $fs/usr 1.41 + cp -a $install/usr/bin $fs/usr 1.42 }