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