tizen 2.0
[external/ltrace.git] / packaging / ltrace.spec
1 #sbs-git:slp/pkgs/l/ltrace ltrace 0.5.3 8b9a04c3142617c3019ee9e6eae64eda9a32c4ee
2 Name:       ltrace
3 Summary:    Tracks runtime library calls in dynamically linked programs
4 Version: 0.5.3
5 Release:    1
6 Group:      utils
7 License:    GPLv1
8 Source0:    ltrace-0.5.3.tar.gz
9 BuildRequires:  binutils-devel
10 BuildRequires:  elfutils-libelf-devel
11
12
13 %description
14 Tracks runtime library calls in dynamically linked programs
15  ltrace is a debugging program which runs a specified command until it
16  exits.  While the command is executing, ltrace intercepts and records
17  the dynamic library calls which are called by
18  the executed process and the signals received by that process.
19  It can also intercept and print the system calls executed by the program.
20  .
21  The program to be traced need not be recompiled for this, so you can
22  use it on binaries for which you don't have the source handy.
23  .
24  You should install ltrace if you need a sysadmin tool for tracking the
25  execution of processes..
26
27 %prep
28 %setup -q
29
30 %build
31
32 %configure --disable-static
33 make %{?jobs:-j%jobs}
34
35 %install
36 rm -rf %{buildroot}
37 %make_install
38 rm -rf %{buildroot}%{_prefix}/share/doc/ltrace
39
40 %files
41 %defattr(-,root,root,-)
42 %doc README COPYING
43 %{_sysconfdir}/ltrace.conf
44 %{_bindir}/ltrace
45 %{_mandir}/man1/ltrace.1.gz