wok diff xorg-xproto/receipt @ rev 13777
slitaz-tools: fix 5.2 Makefile
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jan 03 15:23:18 2013 +0100 (2013-01-03) |
parents | 2c174cc5d31a |
children | a09e9d64e4c9 |
line diff
1.1 --- a/xorg-xproto/receipt Wed Oct 26 20:56:53 2011 +0000 1.2 +++ b/xorg-xproto/receipt Thu Jan 03 15:23:18 2013 +0100 1.3 @@ -1,31 +1,33 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-xproto" 1.7 -VERSION="7.0.22" 1.8 +VERSION="7.0.23" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Xorg server module." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 -DEPENDS="xorg-util-macros" 1.13 -BUILD_DEPENDS="xorg-util-macros" 1.14 SOURCE="xproto" 1.15 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.16 WEB_SITE="http://www.x.org/" 1.17 WGET_URL="$XORG_MIRROR/proto/$TARBALL" 1.18 1.19 +DEPENDS="xorg-util-macros" 1.20 +BUILD_DEPENDS="xorg-util-macros" 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 --sysconfdir=/etc \ 1.27 - --mandir=/usr/share/man --localstatedir=/var \ 1.28 - $CONFIGURE_ARGS 1.29 - make 1.30 - make DESTDIR=$PWD/_pkg install 1.31 + cd $src 1.32 + ./configure \ 1.33 + --sysconfdir=/etc \ 1.34 + --mandir=/usr/share/man \ 1.35 + --localstatedir=/var \ 1.36 + $CONFIGURE_ARGS && 1.37 + make && make install 1.38 } 1.39 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 - cp -a $_pkg/* $fs 1.44 + cp -a $install/* $fs 1.45 } 1.46