wok view valgrind/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents dead8955c3ca
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="valgrind"
4 VERSION="3.15.0"
5 CATEGORY="development"
6 TAGS="profiler"
7 SHORT_DESC="Memory debugger and profiler."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://valgrind.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://sourceware.org/pub/$PACKAGE/$TARBALL"
15 SUGGESTED="perl"
16 DEPENDS=""
17 BUILD_DEPENDS="autoconf"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 autoconf &&
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/valgrind
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind
40 # remove static libraries
41 rm $fs/usr/lib/valgrind/*.*a
42 }