fix lttd append
[ltt-control.git] / tags / ltt-control-0.51-12082008 / specs / ltt-control.spec
CommitLineData
366ebe80 1#
2# Spec file for ltt-control
3#
4Summary: LTT Control
5Name: ltt-control
6Version: 0.45
7Release: 11102007
8License: GPL
9Group: Applications/Development
10Source: http://ltt.polymtl.ca/lttng/ltt-control-%{version}-%{release}.tar.gz
11URL: http://ltt.polymtl.ca
12Packager: Martin Bisson <bissonm@discreet.com>
13BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14
15# Where do we install the libs
16%ifarch x86_64 ppc64 ppc64iseries ia64
17%define libdir /usr/lib64
18%else
19%define libdir /usr/lib
20%endif
21
22
23%description
24
25ltt-control is the part of the Linux Trace Toolkit Next Generation
26that allows a machine to be traced. It holds the daemon with which
27the kernel will communicate and the application that starts and
28terminate tracing.
29
30%prep
31%setup -q -n ltt-control-%{version}-%{release}
32
33%build
34./configure --prefix=/usr --libdir=%{libdir}
35make
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make DESTDIR=$RPM_BUILD_ROOT install
40
41%post
42echo "Running ldconfig (might take a while)"
43ldconfig
44
45%postun
46echo "Running ldconfig (might take a while)"
47ldconfig
48
49%files
50%{libdir}/liblttctl.so.0.0.0
51%{libdir}/liblttctl.so.0
52%{libdir}/liblttctl.so
53%{libdir}/liblttctl.la
54%{libdir}/liblttctl.a
55/usr/bin/lttctl
56/usr/bin/lttd
57/usr/include/liblttctl
58/usr/include/liblttctl/lttctl.h
This page took 0.023499 seconds and 4 git commands to generate.