source: custom/examples/961-openssl@ 894eec3

ablfs-more legacy trunk
Last change on this file since 894eec3 was 9543675, checked in by Pierre Labastie <pierre@…>, 8 years ago

Update custom/examples. Thanks to Tom Armistead for the patch.

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