]> git.pld-linux.org Git - packages/compat-openssl.git/blame - compat-openssl.spec
correct license
[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
12ExclusiveArch: %{x8664} %{ix86} alpha ppc sparc
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%define no_install_post_check_so 1
16%define no_install_post_strip 1
17%define no_install_post_chrpath 1
18%define _enable_debug_packages 0
19
20%description
21The OpenSSL Project is a collaborative effort to develop a robust,
22commercial-grade, full-featured, and Open Source toolkit implementing
23the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS
24v1) protocols with full-strength cryptography world-wide. The project
25is managed by a worldwide community of volunteers that use the
26Internet to communicate, plan, and develop the OpenSSL tookit and its
27related documentation.
28
29OpenSSL is based on the excellent SSLeay library developed by Eric A.
30Young and Tim J. Hudson. The OpenSSL toolkit is licensed under an
31Apache-style licence, which basically means that you are free to get
32and use it for commercial and non-commercial purposes subject to some
33simple license conditions.
34
35This package contains shared libraries only, install openssl-tools if
36you want to use openssl cmdline tool.
37
38%prep
39%setup -qc
40
41%install
42rm -rf $RPM_BUILD_ROOT
43install -d $RPM_BUILD_ROOT%{_libdir}
44
45%ifarch alpha
46cp -a alpha/* $RPM_BUILD_ROOT%{_libdir}
47%endif
48
49%ifarch %{x8664}
50cp -a amd64/* $RPM_BUILD_ROOT%{_libdir}
51%endif
52
53%ifarch sparc
54cp -a sparc/* $RPM_BUILD_ROOT%{_libdir}
55%endif
56
57%ifarch %{ix86}
58cp -a i[34]86/* $RPM_BUILD_ROOT%{_libdir}
59%endif
60
61%ifarch ppc
62cp -a ppc/* $RPM_BUILD_ROOT%{_libdir}
63%endif
64
65/sbin/ldconfig -n $RPM_BUILD_ROOT%{_libdir}
66
67%clean
68rm -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%attr(755,root,root) %{_libdir}/libcrypto.so.*.*.*
76%attr(755,root,root) %{_libdir}/libssl.so.*.*.*
This page took 0.122091 seconds and 4 git commands to generate.