wok diff valgrind/receipt @ rev 15098

Up valgrind (3.8.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 12:15:00 2013 +0000 (2013-08-14)
parents 6836a4e66c05
children 7b9b6a2063d5
line diff
     1.1 --- a/valgrind/receipt	Fri Feb 18 01:11:06 2011 +0000
     1.2 +++ b/valgrind/receipt	Wed Aug 14 12:15:00 2013 +0000
     1.3 @@ -1,39 +1,38 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="valgrind"
     1.7 -VERSION="3.6.1"
     1.8 +VERSION="3.8.1"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Memory debugger and profiler."
    1.11  MAINTAINER="paul@slitaz.org"
    1.12 -DEPENDS=""
    1.13 -BUILD_DEPENDS="sed autoconf"
    1.14 +LICENSE="GPL2"
    1.15  SUGGESTED="perl"
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17  WEB_SITE="http://valgrind.org/"
    1.18  WGET_URL="http://valgrind.org/downloads/$TARBALL"
    1.19  TAGS="profiler"
    1.20  
    1.21 +DEPENDS=""
    1.22 +BUILD_DEPENDS="sed autoconf"
    1.23 +
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	cd $src
    1.28 -
    1.29  	autoconf
    1.30 -	
    1.31  	./configure \
    1.32  		--prefix=/usr \
    1.33  		--infodir=/usr/share/info \
    1.34  		--mandir=/usr/share/man \
    1.35  		$CONFIGURE_ARGS &&
    1.36 -	make && make DESTDIR=$PWD/_pkg install
    1.37 +	make && make DESTDIR=$DESTDIR install
    1.38  }
    1.39  
    1.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr/lib/valgrind
    1.44 -	cp -a $_pkg/usr/bin $fs/usr
    1.45 -	cp -a $_pkg/usr/lib/valgrind/* $fs/usr/lib/valgrind
    1.46 +	cp -a $install/usr/bin $fs/usr
    1.47 +	cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind
    1.48  	# remove static libraries
    1.49  	rm $fs/usr/lib/valgrind/*.*a	
    1.50  }