source: custom/examples/961-openssl

trunk
Last change on this file was fd4a798, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove $Id$ comments, they are useless with git

  • Property mode set to 100644
File size: 904 bytes
Line 
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
7PKG="openssl"
8PKG_VERSION="1.0.2d"
9PKG_FILE="openssl-${PKG_VERSION}.tar.gz"
10URL="ftp://ftp.openssl.org/source/${PKG_FILE}"
11MD5="38dd619b2e77cbac69b99f52a053d25a"
12for i in PATCH{1..10}; do
13 unset $i
14done
15
16( cat << "xEOFx"
17
18./config --prefix=/usr \
19 --openssldir=/etc/ssl \
20 --libdir=lib \
21 shared \
22 zlib-dynamic &&
23make
24
25#sed -i 's# libcrypto.a##;s# libssl.a##' Makefile
26make MANDIR=/usr/share/man MANSUFFIX=ssl install &&
27install -dv -m755 /usr/share/doc/openssl-1.0.2d &&
28cp -vfr doc/* /usr/share/doc/openssl-1.0.2d
29
30#
31# Note: certificates not installed by this.
32#
33xEOFx
34) > tmp
Note: See TracBrowser for help on using the repository browser.