]> git.pld-linux.org Git - packages/systemtap.git/blob - systemtap.spec
a07786a8aa5129249de91f897302bd26a061ce53
[packages/systemtap.git] / systemtap.spec
1 #
2 # TODO: - enable server
3 #       - BRs
4 #       - more configure options
5 #
6 Summary:        Instrumentation System
7 Summary(pl.UTF-8):      System oprzyrządowania
8 Name:           systemtap
9 Version:        1.4
10 Release:        1
11 License:        GPL v2+
12 Group:          Base
13 Source0:        http://sources.redhat.com/systemtap/ftp/releases/%{name}-%{version}.tar.gz
14 # Source0-md5:  c5c9c2087c2aa0459b90e690a5ca95d0
15 Patch0:         %{name}-configure.patch
16 URL:            http://sourceware.org/systemtap/
17 BuildRequires:  autoconf
18 BuildRequires:  automake
19 BuildRequires:  elfutils-devel
20 BuildRequires:  glib2-devel
21 BuildRequires:  mysql-devel
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 SystemTap is an instrumentation system for systems running Linux 2.6.
26 Developers can write instrumentation to collect data on the operation
27 of the system.
28
29 %description -l pl.UTF-8
30 SystemTap to system oprzyrządowania dla systemów opartych na Linuksie
31 2.6. Programiści mogą pisać narzędzia do zbierania danych dotyczących
32 operacji w systemie.
33
34 %prep
35 %setup -q
36 %patch0 -p1
37
38 %build
39 %{__aclocal}
40 %{__autoconf}
41 %{__autoheader}
42 %{__automake}
43 %configure \
44         --disable-silent-rules
45 %{__make}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 install -d $RPM_BUILD_ROOT/var/cache/%{name}
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc AUTHORS HACKING NEWS README*
61 %doc %{_docdir}
62 %attr(755,root,root) %{_bindir}/stap
63 %attr(755,root,root) %{_bindir}/stap-merge
64 %attr(755,root,root) %{_bindir}/stap-report
65 %attr(755,root,root) %{_bindir}/stapgraph
66 %attr(755,root,root) %{_bindir}/staprun
67 %attr(755,root,root) %{_bindir}/dtrace
68 %{_datadir}/%{name}
69 %{_libexecdir}/%{name}
70 %dir /var/cache/%{name}
71 %{_mandir}/man1/*.1*
72 %{_mandir}/man3/*.3*
73 %{_mandir}/man7/*.7*
74 %{_mandir}/man8/*.8*
This page took 0.028068 seconds and 2 git commands to generate.