]> git.pld-linux.org Git - packages/compat-openssl.git/blame - compat-openssl.spec
conflict for old openssl package
[packages/compat-openssl.git] / compat-openssl.spec
CommitLineData
66399a82
ER
1Summary: OpenSSL Toolkit libraries for the "Secure Sockets Layer" (SSL v2/v3)
2Name: compat-openssl
3Version: 0.9.7m
4Release: 9
2d665028 5License: Apache-like
66399a82
ER
6Group: Libraries
7Source0: openssl-compat-%{version}.tar.xz
8# Source0-md5: 2c13cb0bba2f731f1e80ef514befd82b
9BuildRequires: /sbin/ldconfig
10BuildRequires: tar >= 1:1.22
11BuildRequires: xz
f82113ed 12Conflicts: openssl < 0.9.7m-9
66399a82
ER
13ExclusiveArch: %{x8664} %{ix86} alpha ppc sparc
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%define no_install_post_check_so 1
17%define no_install_post_strip 1
18%define no_install_post_chrpath 1
19%define _enable_debug_packages 0
20
21%description
22The OpenSSL Project is a collaborative effort to develop a robust,
23commercial-grade, full-featured, and Open Source toolkit implementing
24the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS
25v1) protocols with full-strength cryptography world-wide. The project
26is managed by a worldwide community of volunteers that use the
27Internet to communicate, plan, and develop the OpenSSL tookit and its
28related documentation.
29
30OpenSSL is based on the excellent SSLeay library developed by Eric A.
31Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an
32Apache-style licence, which basically means that you are free to get
33and use it for commercial and non-commercial purposes subject to some
34simple license conditions.
35
36This package contains shared libraries only, install openssl-tools if
37you want to use openssl cmdline tool.
38
39%prep
40%setup -qc
41
42%install
43rm -rf $RPM_BUILD_ROOT
44install -d $RPM_BUILD_ROOT%{_libdir}
45
46%ifarch alpha
47cp -a alpha/* $RPM_BUILD_ROOT%{_libdir}
48%endif
49
50%ifarch %{x8664}
51cp -a amd64/* $RPM_BUILD_ROOT%{_libdir}
52%endif
53
54%ifarch sparc
55cp -a sparc/* $RPM_BUILD_ROOT%{_libdir}
56%endif
57
58%ifarch %{ix86}
59cp -a i[34]86/* $RPM_BUILD_ROOT%{_libdir}
60%endif
61
62%ifarch ppc
63cp -a ppc/* $RPM_BUILD_ROOT%{_libdir}
64%endif
65
66/sbin/ldconfig -n $RPM_BUILD_ROOT%{_libdir}
67
68%clean
69rm -rf $RPM_BUILD_ROOT
70
71%post -p /sbin/ldconfig
72%postun -p /sbin/ldconfig
73
74%files
75%defattr(644,root,root,755)
76%attr(755,root,root) %{_libdir}/libcrypto.so.*.*.*
77%attr(755,root,root) %{_libdir}/libssl.so.*.*.*
This page took 0.090496 seconds and 4 git commands to generate.