]> git.pld-linux.org Git - packages/TraceToolkit.git/blob - TraceToolkit.spec
- tabs in preamble
[packages/TraceToolkit.git] / TraceToolkit.spec
1 Summary:        Linux Trace Toolkit
2 Summary(pl.UTF-8):      Narzędzia do śledzenia Linuksa
3 Name:           TraceToolkit
4 Version:        0.9.6
5 %define         _pre pre2
6 Release:        0.%{_pre}.2
7 License:        GPL
8 Group:          X11/Applications
9 Source0:        http://www.opersys.com/ftp/pub/LTT/%{name}-%{version}%{_pre}.tgz
10 # Source0-md5:  09be9c2b411070a51ba85be5570f0d05
11 URL:            http://www.opersys.com/LTT/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  gtk+-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 The Linux Trace Toolkit, more commonly known as LTT, is a
19 fully-featured tracing system for the Linux kernel. It includes both
20 the kernel components required for tracing and the user-level tools
21 required to view the traces.
22
23 %description -l pl.UTF-8
24 Linux Trace Toolkit, znany bardziej jako LTT, jest w pełni
25 funkcjonalnym systemem do śledzenia jądra Linuksa. Zawiera elementy
26 jądra potrzebne do śledzenia oraz narzędzia użytkownika potrzebne do
27 przeglądania wyników śledzenia.
28
29 %package devel 
30 Summary:        Header files for Linux Trace Toolkit library
31 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki Linux Trace Toolkit
32 Group:          Development/Libraries
33 Requires:       %{name} = %{version}-%{release}
34
35 %description devel
36 Header files for Linux Trace Toolkit library
37
38 %description devel -l pl.UTF-8
39 Pliki nagłówkowe biblioteki Linux Trace Toolkit
40
41 %package static
42 Summary:        Static version of Linux Trace Toolkit library
43 Summary(pl.UTF-8):      Statyczna wersja biblioteki Linux Trace Toolkit
44 Group:          Development/Libraries
45 Requires:       %{name}-devel = %{version}-%{release}
46
47 %description static
48 Static version of Linux Trace Toolkit library.
49
50 %description static -l pl.UTF-8
51 Statyczna wersja biblioteki Linux Trace Toolkit.
52
53 %prep
54 %setup -q -n %{name}-%{version}%{_pre}
55
56 %build
57 %{__aclocal} -I m4
58 %{__autoconf}
59 %{__autoheader}
60 %{__automake}
61 %configure
62 %{__make}
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66
67 %{__make} install \
68         DESTDIR=$RPM_BUILD_ROOT
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %files
77 %defattr(644,root,root,755)
78 %doc README
79 %attr(755,root,root) %{_bindir}/*
80 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
81
82 %files devel
83 %defattr(644,root,root,755)
84 %attr(755,root,root) %{_libdir}/lib*.so
85 %{_libdir}/lib*.la
86 %{_includedir}/*
87
88 %files static
89 %defattr(644,root,root,755)
90 %{_libdir}/lib*.a
This page took 0.060064 seconds and 3 git commands to generate.