]> git.pld-linux.org Git - packages/libp11.git/blob - libp11.spec
- readded ChangeLog
[packages/libp11.git] / libp11.spec
1 Summary:        Layer on top of PKCS#11 API to make using PKCS#11 implementations easier
2 Summary(pl.UTF-8):      Warstwa powyżej API PKCS#11 ułatwiająca używanie implementacji PKCS#11
3 Name:           libp11
4 Version:        0.2.4
5 Release:        1
6 License:        LGPL v2.1+
7 Group:          Libraries
8 Source0:        http://www.opensc-project.org/files/libp11/%{name}-%{version}.tar.gz
9 # Source0-md5:  9e2c5cbececde245e2d2f535bd49ce35
10 URL:            http://www.opensc-project.org/libp11/
11 BuildRequires:  libltdl-devel
12 BuildRequires:  openssl-devel >= 0.9.7
13 BuildRequires:  pkgconfig
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Libp11 is a library implementing a small layer on top of PKCS#11 API
18 to make using PKCS#11 implementations easier.
19
20 %description -l pl.UTF-8
21 Libp11 to biblioteka implementująca niewielką warstwę na wierzchu API
22 PKCS#11 mająca ułatwić używanie implementacji PKCS#11.
23
24 %package devel
25 Summary:        Header files for libp11 library
26 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libp11
27 Group:          Development/Libraries
28 Requires:       %{name} = %{version}-%{release}
29 Requires:       libltdl-devel
30 Requires:       openssl-devel >= 0.9.7
31
32 %description devel
33 Header files for libp11 library.
34
35 %description devel -l pl.UTF-8
36 Pliki nagłówkowe biblioteki libp11.
37
38 %package static
39 Summary:        Static libp11 library
40 Summary(pl.UTF-8):      Statyczna biblioteka libp11
41 Group:          Development/Libraries
42 Requires:       %{name}-devel = %{version}-%{release}
43
44 %description static
45 Static libp11 library.
46
47 %description static -l pl.UTF-8
48 Statyczna biblioteka libp11.
49
50 %prep
51 %setup -q
52
53 %build
54 %configure \
55         --enable-api-doc
56 %{__make}
57
58 %install
59 rm -rf $RPM_BUILD_ROOT
60
61 %{__make} install \
62         DESTDIR=$RPM_BUILD_ROOT
63
64 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
65 cp -af examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
66
67 %clean
68 rm -rf $RPM_BUILD_ROOT
69
70 %post   -p /sbin/ldconfig
71 %postun -p /sbin/ldconfig
72
73 %files
74 %defattr(644,root,root,755)
75 %doc NEWS doc/{README,nonpersistent/{ChangeLog,wiki.out/*}}
76 %attr(755,root,root) %{_libdir}/libp11.so.*.*.*
77 %attr(755,root,root) %ghost %{_libdir}/libp11.so.0
78
79 %files devel
80 %defattr(644,root,root,755)
81 %doc doc/api.out/html/*
82 %attr(755,root,root) %{_libdir}/libp11.so
83 %{_libdir}/libp11.la
84 %{_includedir}/libp11.h
85 %{_pkgconfigdir}/libp11.pc
86 %{_examplesdir}/%{name}-%{version}
87
88 %files static
89 %defattr(644,root,root,755)
90 %{_libdir}/libp11.a
This page took 0.089728 seconds and 3 git commands to generate.