wok-next annotate valgrind/receipt @ rev 5436
Up: gtkmm (2.20.3)
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed May 05 02:53:39 2010 +0000 (2010-05-05) |
parents | ea514bf41b60 |
children | 9760c1c80a57 |
rev | line source |
---|---|
paul@3641 | 1 # SliTaz package receipt. |
paul@3641 | 2 |
paul@3641 | 3 PACKAGE="valgrind" |
paul@4457 | 4 VERSION="3.5.0" |
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="" |
paul@3641 | 9 BUILD_DEPENDS="sed" |
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 |
paul@3641 | 17 # Rules to configure and make the package. |
paul@3641 | 18 compile_rules() |
paul@3641 | 19 { |
paul@3641 | 20 cd $src |
paul@3641 | 21 ./configure \ |
paul@3641 | 22 --prefix=/usr \ |
paul@3641 | 23 --infodir=/usr/share/info \ |
paul@3641 | 24 --mandir=/usr/share/man \ |
paul@3641 | 25 $CONFIGURE_ARGS && |
paul@3641 | 26 make && make DESTDIR=$PWD/_pkg install |
paul@3641 | 27 } |
paul@3641 | 28 |
paul@3641 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3641 | 30 genpkg_rules() |
paul@3641 | 31 { |
paul@3641 | 32 mkdir -p $fs/usr/lib/valgrind |
paul@3641 | 33 cp -a $_pkg/usr/bin $fs/usr |
paul@3641 | 34 cp -a $_pkg/usr/lib/valgrind/* $fs/usr/lib/valgrind |
paul@3641 | 35 # remove static libraries |
paul@4457 | 36 rm $fs/usr/lib/valgrind/*.*a |
paul@3641 | 37 } |