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