]> git.pld-linux.org Git - packages/libdomainkeys.git/blob - libdomainkeys.spec
- BR: libstdc++-devel, libtool
[packages/libdomainkeys.git] / libdomainkeys.spec
1 Summary:        DomainKey Library for email servers & clients
2 Summary(pl.UTF-8):      Biblioteka DomainKey dla serwerów i klientów poczty elektronicznej
3 Name:           libdomainkeys
4 Version:        0.68
5 Release:        6
6 License:        Yahoo! DomainKeys Public License Agreement v1.1
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/domainkeys/%{name}-%{version}.tar.gz
9 # Source0-md5:  c9fe164d6296e7ad5468580875ac4f2e
10 Patch0:         %{name}-libtool.patch
11 Patch1:         %{name}-segv.patch
12 Patch2:         %{name}-dknewkey.patch
13 URL:            http://domainkeys.sourceforge.net/
14 BuildRequires:  libstdc++-devel
15 BuildRequires:  libtool
16 BuildRequires:  openssl-devel
17 Requires:       mktemp
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 DomainKey Library for email servers & clients.
22
23 %description -l pl.UTF-8
24 Biblioteka DomainKey dla serwerów i klientów poczty elektronicznej.
25
26 %package devel
27 Summary:        Header files for libdomainkeys library
28 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libdomainkeys
29 Group:          Development/Libraries
30 Requires:       %{name} = %{version}-%{release}
31 Requires:       openssl-devel
32
33 %description devel
34 Header files for libdomainkeys library.
35
36 %description devel -l pl.UTF-8
37 Pliki nagłówkowe biblioteki libdomainkeys.
38
39 %package static
40 Summary:        Static libdomainkeys library
41 Summary(pl.UTF-8):      Statyczna biblioteka libdomainkeys
42 Group:          Development/Libraries
43 Requires:       %{name}-devel = %{version}-%{release}
44
45 %description static
46 Static libdomainkeys library.
47
48 %description static -l pl.UTF-8
49 Statyczna biblioteka libdomainkeys.
50
51 %prep
52 %setup -q
53 %patch0 -p1
54 %patch1 -p1
55 %patch2 -p1
56
57 %build
58 %{__make} \
59         CC="%{__cc}" \
60         CFLAGS="%{rpmcflags} -DBIND_8_COMPAT"
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64 install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir},%{_includedir}}
65
66 libtool --mode=install install dknewkey dktest $RPM_BUILD_ROOT%{_bindir}
67 install dktrace.h domainkeys.h $RPM_BUILD_ROOT%{_includedir}
68 libtool --mode=install install libdomainkeys.la $RPM_BUILD_ROOT%{_libdir}
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %files
77 %defattr(644,root,root,755)
78 %doc *.html CHANGES
79 %attr(755,root,root) %{_bindir}/*
80 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
81
82 %files devel
83 %defattr(644,root,root,755)
84 %attr(755,root,root) %{_libdir}/lib*.so
85 %{_libdir}/lib*.la
86 %{_includedir}/*.h
87
88 %files static
89 %defattr(644,root,root,755)
90 %{_libdir}/lib*.a
This page took 0.152771 seconds and 3 git commands to generate.