source:
custom/examples/961-openssl@
0495e57e
Last change on this file since 0495e57e was fd4a798, checked in by , 3 years ago | |
---|---|
|
|
File size: 904 bytes |
Rev | Line | |
---|---|---|
[781acdc] | 1 | # The OpenSSL package contains management tools and libraries |
2 | # relating to cryptography. These are useful for providing | |
3 | # cryptography functions to other packages, notably OpenSSH, | |
4 | # email applications and web browsers (for accessing HTTPS sites). | |
5 | # | |
6 | ||
7 | PKG="openssl" | |
[9543675] | 8 | PKG_VERSION="1.0.2d" |
[781acdc] | 9 | PKG_FILE="openssl-${PKG_VERSION}.tar.gz" |
10 | URL="ftp://ftp.openssl.org/source/${PKG_FILE}" | |
[9543675] | 11 | MD5="38dd619b2e77cbac69b99f52a053d25a" |
[dcf0e25] | 12 | for i in PATCH{1..10}; do |
13 | unset $i | |
14 | done | |
[781acdc] | 15 | |
16 | ( cat << "xEOFx" | |
17 | ||
[9543675] | 18 | ./config --prefix=/usr \ |
19 | --openssldir=/etc/ssl \ | |
20 | --libdir=lib \ | |
21 | shared \ | |
22 | zlib-dynamic && | |
23 | make | |
[781acdc] | 24 | |
[9543675] | 25 | #sed -i 's# libcrypto.a##;s# libssl.a##' Makefile |
26 | make MANDIR=/usr/share/man MANSUFFIX=ssl install && | |
27 | install -dv -m755 /usr/share/doc/openssl-1.0.2d && | |
28 | cp -vfr doc/* /usr/share/doc/openssl-1.0.2d | |
[781acdc] | 29 | |
[9543675] | 30 | # |
31 | # Note: certificates not installed by this. | |
32 | # | |
[781acdc] | 33 | xEOFx |
34 | ) > tmp |
Note:
See TracBrowser
for help on using the repository browser.