source: custom/examples/961-openssl@ 3c38ab0

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 3c38ab0 was 781acdc, checked in by George Boudreau <georgeb@…>, 18 years ago

Add a few more examples for custom builds

  • Property mode set to 100644
File size: 930 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="0.9.8c"
12PKG_FILE="openssl-${PKG_VERSION}.tar.gz"
13URL="ftp://ftp.openssl.org/source/${PKG_FILE}"
14MD5="78454bec556bcb4c45129428a766c886"
15PATCH1=" http://www.linuxfromscratch.org/patches/blfs/svn/openssl-0.9.8c-fix_manpages-1.patch"
16
17( cat << "xEOFx"
18
19sed -i -e 's/mcpu/march/' config
20patch -Np1 -i ../openssl-0.9.8c-fix_manpages-1.patch &&
21./config --openssldir=/etc/ssl --prefix=/usr shared &&
22make MANDIR=/usr/share/man
23
24make MANDIR=/usr/share/man install &&
25cp -v -r certs /etc/ssl &&
26install -v -d -m755 /usr/share/doc/openssl-0.9.8c &&
27cp -v -r doc/{HOWTO,README,*.{txt,html,gif}} \
28 /usr/share/doc/openssl-0.9.8c
29
30
31xEOFx
32) > tmp
Note: See TracBrowser for help on using the repository browser.