wok view valgrind/receipt @ rev 19505

Rollback liboping (1.8.0)
author Paul Issott <paul@slitaz.org>
date Sat Nov 19 09:14:20 2016 +0000 (2016-11-19)
parents 7b9b6a2063d5
children 1b452c5bf7a6
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 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/valgrind
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind
36 # remove static libraries
37 rm $fs/usr/lib/valgrind/*.*a
38 }