]> git.pld-linux.org Git - packages/libp11.git/blob - libp11.spec
9470823f6225152a62b8e376b104ae1b54c384c5
[packages/libp11.git] / libp11.spec
1 Summary:        Layer on top of PKCS#11 API to make using PKCS#11 implementations easier
2 Summary(pl):    Warstwa powy¿ej API PKCS#11 u³atwiaj±ca u¿ywanie implementacji PKCS#11
3 Name:           libp11
4 Version:        0.2.1
5 Release:        1
6 License:        LGPL v2.1+
7 Group:          Libraries
8 Source0:        http://www.opensc.org/files/libp11/%{name}-%{version}.tar.gz
9 # Source0-md5:  e91b612f6bc637552e1b4e69f40ed187
10 URL:            http://www.opensc.org/libp11/
11 BuildRequires:  libltdl-devel
12 BuildRequires:  openssl-devel
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
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):    Pliki nag³ówkowe biblioteki libp11
27 Group:          Development/Libraries
28 Requires:       %{name} = %{version}-%{release}
29 Requires:       libltdl-devel
30 Requires:       openssl-devel
31
32 %description devel
33 Header files for libp11 library.
34
35 %description devel -l pl
36 Pliki nag³ówkowe biblioteki libp11.
37
38 %package static
39 Summary:        Static libp11 library
40 Summary(pl):    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
48 Statyczna biblioteka libp11.
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 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
64 cp -af examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
65
66 %clean
67 rm -rf $RPM_BUILD_ROOT
68
69 %post   -p /sbin/ldconfig
70 %postun -p /sbin/ldconfig
71
72 %files
73 %defattr(644,root,root,755)
74 %doc doc/{ChangeLog,README,*.html,*.css}
75 %attr(755,root,root) %{_libdir}/libp11.so.*.*.*
76
77 %files devel
78 %defattr(644,root,root,755)
79 %doc doc/api/*
80 %attr(755,root,root) %{_libdir}/libp11.so
81 %{_libdir}/libp11.la
82 %{_includedir}/libp11.h
83 %{_pkgconfigdir}/libp11.pc
84 %{_examplesdir}/%{name}-%{version}
85
86 %files static
87 %defattr(644,root,root,755)
88 %{_libdir}/libp11.a
This page took 0.048628 seconds and 2 git commands to generate.