]> git.pld-linux.org Git - packages/lttngtop.git/blob - lttngtop.spec
- new
[packages/lttngtop.git] / lttngtop.spec
1 Summary:        Interface for reading and browsing LTTng traces
2 Summary(pl.UTF-8):      Interfejs do odczytu i przeglądania śladów LTTng
3 Name:           lttngtop
4 Version:        0.2
5 Release:        1
6 License:        GPL v2
7 Group:          Applications/System
8 Source0:        http://lttng.org/files/lttngtop/%{name}-%{version}.tar.bz2
9 # Source0-md5:  6d957f2395c3a2fd550822b81252e9e7
10 URL:            http://lttng.org/
11 BuildRequires:  babeltrace-devel
12 BuildRequires:  glib2-devel >= 1:2.22.0
13 BuildRequires:  libuuid-devel
14 BuildRequires:  ncurses-devel
15 BuildRequires:  ncurses-ext-devel
16 BuildRequires:  pkgconfig
17 BuildRequires:  popt-devel
18 Requires:       glib2 >= 1:2.22.0
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 LTTngTop is an ncurses interface for reading and browsing traces
23 recorded by the LTTng tracer and displaying various statistics. As of
24 now, the CPU usage, per file/process I/O bandwidth and perf counters
25 are displayed. This version currently only supports offline traces,
26 but a live version is in alpha and will be available for testing soon.
27
28 %description -l pl.UTF-8
29 LTTngTop to oparty na ncurses interfejs do odczytu i przeglądania
30 śladów zapisanych przez LTTng oraz wyświetlania różnych statystyk.
31 Obecnie wyświetlane jest wykorzystanie procesora, wykorzystanie we/wy
32 dla pliku/procesu oraz liczniki perf. Ta wersja obsługuje tylko ślady
33 offline, ale wersja działająca na żywo jest w stadium alfa i będzie
34 wkrótce dostępna do testów.
35
36 %prep
37 %setup -q
38
39 %build
40 CPPFLAGS="%{rpmcppflags} -I/usr/include/ncurses"
41 %configure \
42         --disable-silent-rules
43 %{__make}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc ChangeLog README
57 %attr(755,root,root) %{_bindir}/lttngtop
58 %{_mandir}/man1/lttngtop.1*
This page took 0.070755 seconds and 3 git commands to generate.