blob: 0b504177bec4d429f124eda521a9b2e242f5655f [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
muellerb3be9422004-01-24 22:32:56 +000032make install DESTDIR=$RPM_BUILD_ROOT
gobrye721a522002-03-22 13:38:30 +000033
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
fitzhardinge98abfc72003-12-16 02:05:15 +000044/usr/lib/valgrind
gobrye721a522002-03-22 13:38:30 +000045/usr/lib/valgrind/*
njnec72b7d2003-04-22 21:47:56 +000046/usr/bin/valgrind-listener
fitzhardinge98abfc72003-12-16 02:05:15 +000047/usr/lib/pkgconfig/valgrind.pc
gobrye721a522002-03-22 13:38:30 +000048
49%doc
50/usr/share/doc/valgrind/*
51
52%clean
53[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf ${RPM_BUILD_ROOT}