wok diff xorg-util-macros/receipt @ rev 13685

btrfs-progs: do not create 2 snapshots simultaneously...
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 03 11:12:37 2012 +0100 (2012-12-03)
parents 61b702a9e66e
children a09e9d64e4c9
line diff
     1.1 --- a/xorg-util-macros/receipt	Thu Mar 10 10:44:00 2011 +0000
     1.2 +++ b/xorg-util-macros/receipt	Mon Dec 03 11:12:37 2012 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="xorg-util-macros"
     1.7 -VERSION="1.12.0"
     1.8 +VERSION="1.17"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="X.Org Autotools macros"
    1.11  MAINTAINER="gokhlayeh@slitaz.org"
    1.12 @@ -13,16 +13,17 @@
    1.13  # Rules to configure and make the package.
    1.14  compile_rules()
    1.15  {
    1.16 -    cd $src
    1.17 -    ./configure --prefix=/usr --sysconfdir=/etc \
    1.18 -    --mandir=/usr/share/man --localstatedir=/var \
    1.19 -    $CONFIGURE_ARGS &&
    1.20 -    make &&
    1.21 -    make DESTDIR=$PWD/_pkg install
    1.22 +	cd $src
    1.23 +	./configure \
    1.24 +		--sysconfdir=/etc \
    1.25 +		--mandir=/usr/share/man \
    1.26 +		--localstatedir=/var \
    1.27 +		$CONFIGURE_ARGS &&
    1.28 +	make && make install
    1.29  }
    1.30  
    1.31  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.32  genpkg_rules()
    1.33  {
    1.34 -	cp -a $_pkg/* $fs
    1.35 +	cp -a $install/* $fs
    1.36  }