wok diff valgrind/receipt @ rev 22491
updated apr and apr-dev (1.4.6 -> 1.7.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Dec 31 14:21:42 2019 +0100 (2019-12-31) |
parents | dead8955c3ca |
children | 934055de50e2 |
line diff
1.1 --- a/valgrind/receipt Wed Sep 25 09:50:51 2013 +0000 1.2 +++ b/valgrind/receipt Tue Dec 31 14:21:42 2019 +0100 1.3 @@ -1,38 +1,42 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="valgrind" 1.7 -VERSION="3.8.1" 1.8 +VERSION="3.15.0" 1.9 CATEGORY="development" 1.10 +TAGS="profiler" 1.11 SHORT_DESC="Memory debugger and profiler." 1.12 MAINTAINER="paul@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="http://valgrind.org/" 1.15 + 1.16 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 +WGET_URL="https://sourceware.org/pub/$PACKAGE/$TARBALL" 1.18 + 1.19 SUGGESTED="perl" 1.20 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.21 -WEB_SITE="http://valgrind.org/" 1.22 -WGET_URL="http://valgrind.org/downloads/$TARBALL" 1.23 -TAGS="profiler" 1.24 - 1.25 DEPENDS="" 1.26 -BUILD_DEPENDS="sed autoconf" 1.27 +BUILD_DEPENDS="autoconf" 1.28 1.29 # Rules to configure and make the package. 1.30 compile_rules() 1.31 { 1.32 - autoconf 1.33 - ./configure \ 1.34 - --prefix=/usr \ 1.35 - --infodir=/usr/share/info \ 1.36 - --mandir=/usr/share/man \ 1.37 + autoconf && 1.38 + ./configure \ 1.39 + --prefix=/usr \ 1.40 + --infodir=/usr/share/info \ 1.41 + --mandir=/usr/share/man \ 1.42 $CONFIGURE_ARGS && 1.43 - make && make DESTDIR=$DESTDIR install 1.44 + make && 1.45 + make DESTDIR=$DESTDIR install 1.46 } 1.47 1.48 # Rules to gen a SliTaz package suitable for Tazpkg. 1.49 genpkg_rules() 1.50 { 1.51 mkdir -p $fs/usr/lib/valgrind 1.52 - cp -a $install/usr/bin $fs/usr 1.53 - cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind 1.54 + 1.55 + cp -a $install/usr/bin $fs/usr 1.56 + cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind 1.57 + 1.58 # remove static libraries 1.59 rm $fs/usr/lib/valgrind/*.*a 1.60 }