]> git.pld-linux.org Git - packages/libunwind.git/blob - libunwind.spec
- EA: x86 amd64 hppa ia64
[packages/libunwind.git] / libunwind.spec
1 Summary:        libunwind - a (mostly) platform-independent unwind API
2 Summary(pl):    libunwind - (prawie) niezale¿ne od platformy API do rozwijania
3 Name:           libunwind
4 Version:        0.98.3
5 Release:        1
6 License:        MIT
7 Group:          Libraries
8 Source0:        ftp://ftp.hpl.hp.com/pub/linux-ia64/%{name}-%{version}.tar.gz
9 # Source0-md5:  e6daa3498b80c00888276fb5292f18bd
10 URL:            http://www.hpl.hp.com/research/linux/libunwind/
11 ExclusiveArch:  %{ix86} amd64 hppa ia64
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 The goal of the libunwind project is to define a portable and
16 efficient C programming interface (API) to determine the call-chain
17 of a program.
18  
19 %description -l pl
20 Celem projektu libunwind jest zdefiniowanie przeno¶nego i wydajnego
21 API w jêzyku C do okre¶lania ³añcucha wywo³añ w programie.
22
23 %package devel
24 Summary:        Header files for libunwind library
25 Summary(pl):    Pliki nag³ówkowe biblioteki libunwind
26 Group:          Development/Libraries
27 Requires:       %{name} = %{version}-%{release}
28
29 %description devel
30 Header files for libunwind library.
31
32 %description devel -l pl
33 Pliki nag³ówkowe biblioteki libunwind.
34
35 %package static
36 Summary:        Static libunwind library
37 Summary(pl):    Statyczna biblioteka libunwind
38 Group:          Development/Libraries
39 Requires:       %{name}-devel = %{version}-%{release}
40
41 %description static
42 Static libunwind library.
43
44 %description static -l pl
45 Statyczna biblioteka libunwind.
46
47 %prep
48 %setup -q
49
50 %build
51 %configure
52 %{__make}
53
54 %install
55 rm -rf $RPM_BUILD_ROOT
56
57 %{__make} install \
58         DESTDIR=$RPM_BUILD_ROOT
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %post   -p /sbin/ldconfig
64 %postun -p /sbin/ldconfig
65
66 %files
67 %defattr(644,root,root,755)
68 %doc AUTHORS COPYING ChangeLog NEWS README TODO
69 %attr(755,root,root) %{_libdir}/libunwind*.so.*.*.*
70
71 %files devel
72 %defattr(644,root,root,755)
73 %attr(755,root,root) %{_libdir}/libunwind*.so
74 %{_libdir}/libunwind*.la
75 %{_includedir}/*unwind*.h
76 %{_mandir}/man3/*.3*
77
78 %files static
79 %defattr(644,root,root,755)
80 %{_libdir}/libunwind*.a
This page took 0.090434 seconds and 4 git commands to generate.