blob: cdbbde8d42f16b3d59905eb7b8371602c6a8b4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
Name: latrace
Version: 0.5.9
Release: 1%{?dist}
Summary: LD_AUDIT feature frontend for glibc 2.4+
Group: Development/Debuggers
License: GPLv3+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
URL: http://people.redhat.com/jolsa/latrace
Source: http://people.redhat.com/jolsa/latrace/dl/%{name}-%{version}.tar.bz2
ExclusiveArch: %{ix86} x86_64 arm
BuildRequires: autoconf bison asciidoc xmlto binutils-devel
%description
allows you to trace library calls and get their statistics in a
manner similar to the strace utility (syscall tracing)
%prep
%setup -q
%build
autoconf
%configure
make V=1
%install
rm -rf %{buildroot}
make install ROOTDIR=%{buildroot} V=1
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README ReleaseNotes TODO COPYING
%config(noreplace) %{_sysconfdir}/*
%{_libdir}/libltaudit.so.%{version}
%{_bindir}/latrace
%{_bindir}/latrace-ctl
%{_mandir}/man1/*
%changelog
* Tue May 11 2010 Jiri Olsa <olsajiri@gmail.com> 0.5.9-1
- updated to new version
|