blob: 91f2307aafe93d12c92d27999917f02edc9c5a50 [file] [log] [blame]
gobrye721a522002-03-22 13:38:30 +00001Summary: Valgrind Memory Debugger
2Name: @PACKAGE@
3Version: @VERSION@
4Release: 1
5Copyright: GPL
6Group: Development/Debuggers
sewardjb4db4022002-12-08 22:19:04 +00007Packager: Jeremy Fitzhardinge <jeremy@goop.org>
sewardj46ff1ba2002-09-27 00:42:41 +00008Source: @PACKAGE@-@VERSION@.tar.bz2
gobrye721a522002-03-22 13:38:30 +00009
10Buildroot: %{_tmppath}/@PACKAGE@
11
12%description
13
nethercote5da1e172003-12-03 21:44:45 +000014Valgrind is a GPL'd system for debugging and profiling x86-Linux programs.
15With the tools that come with Valgrind, you can automatically detect
16many memory management and threading bugs, avoiding hours of frustrating
17bug-hunting, making your programs more stable. You can also perform
18detailed profiling to help speed up your programs.
gobrye721a522002-03-22 13:38:30 +000019
nethercote5da1e172003-12-03 21:44:45 +000020The Valgrind distribution includes four tools: two memory error
21detectors, a thread error detector, and a cache profiler. Several other
22tools have been built with Valgrind.
gobrye721a522002-03-22 13:38:30 +000023
24%prep
25%setup -n @PACKAGE@-@VERSION@
26
27%build
28./configure --prefix=/usr
29make
30
31%install
32make install prefix=$RPM_BUILD_ROOT/usr
33
34%files
gobrybcd3ed32002-09-02 11:31:21 +000035%defattr(-,root,root)
sewardjb4db4022002-12-08 22:19:04 +000036/usr/include/valgrind/valgrind.h
37/usr/include/valgrind/memcheck.h
38/usr/include/valgrind/helgrind.h
mueller90fffec2003-11-24 21:25:40 +000039/usr/include/valgrind/vg_constants_skin.h
40/usr/include/valgrind/vg_kerneliface.h
41/usr/include/valgrind/vg_skin.h
gobrye721a522002-03-22 13:38:30 +000042/usr/bin/valgrind
sewardjc5bbdab2002-09-27 09:40:52 +000043/usr/bin/cg_annotate
gobrye721a522002-03-22 13:38:30 +000044/usr/lib/valgrind/*
njnec72b7d2003-04-22 21:47:56 +000045/usr/bin/valgrind-listener
gobrye721a522002-03-22 13:38:30 +000046
47%doc
48/usr/share/doc/valgrind/*
49
50%clean
51[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf ${RPM_BUILD_ROOT}