wok-next view valgrind/receipt @ rev 19701
tcptrack: remove -ltinfo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 26 10:57:18 2017 +0200 (2017-04-26) |
parents | dead8955c3ca |
children | f7cf1ead56c0 |
line source
1 # SliTaz package receipt.
3 PACKAGE="valgrind"
4 VERSION="3.8.1"
5 CATEGORY="development"
6 SHORT_DESC="Memory debugger and profiler."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 SUGGESTED="perl"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://valgrind.org/"
12 WGET_URL="http://valgrind.org/downloads/$TARBALL"
13 TAGS="profiler"
15 DEPENDS=""
16 BUILD_DEPENDS="sed autoconf"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoconf
22 sed -i 's/|clang-4../&|clang-5.*|clang-6.*/' configure*
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/valgrind
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind
37 # remove static libraries
38 rm $fs/usr/lib/valgrind/*.*a
39 }