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