wok annotate valgrind/receipt @ rev 13204

Up: flex (2.5.37)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Aug 06 13:46:14 2012 +0200 (2012-08-06)
parents 0b4cf0d9e1b5
children f4c4a3ce96cc
rev   line source
paul@3641 1 # SliTaz package receipt.
paul@3641 2
paul@3641 3 PACKAGE="valgrind"
slaxemulator@8718 4 VERSION="3.6.1"
paul@3641 5 CATEGORY="development"
paul@3641 6 SHORT_DESC="Memory debugger and profiler."
paul@3641 7 MAINTAINER="paul@slitaz.org"
paul@3641 8 DEPENDS=""
erjo@5890 9 BUILD_DEPENDS="sed autoconf"
paul@3641 10 SUGGESTED="perl"
paul@3641 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@3641 12 WEB_SITE="http://valgrind.org/"
paul@3641 13 WGET_URL="http://valgrind.org/downloads/$TARBALL"
jozee@4975 14 TAGS="profiler"
paul@3641 15
paul@3641 16 # Rules to configure and make the package.
paul@3641 17 compile_rules()
paul@3641 18 {
paul@3641 19 cd $src
slaxemulator@8718 20
erjo@5890 21 autoconf
erjo@5890 22
paul@3641 23 ./configure \
paul@3641 24 --prefix=/usr \
paul@3641 25 --infodir=/usr/share/info \
paul@3641 26 --mandir=/usr/share/man \
paul@3641 27 $CONFIGURE_ARGS &&
paul@3641 28 make && make DESTDIR=$PWD/_pkg install
paul@3641 29 }
paul@3641 30
paul@3641 31 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3641 32 genpkg_rules()
paul@3641 33 {
paul@3641 34 mkdir -p $fs/usr/lib/valgrind
paul@3641 35 cp -a $_pkg/usr/bin $fs/usr
paul@3641 36 cp -a $_pkg/usr/lib/valgrind/* $fs/usr/lib/valgrind
paul@3641 37 # remove static libraries
paul@4457 38 rm $fs/usr/lib/valgrind/*.*a
paul@3641 39 }