source: custom/examples/961-openssl@ 1330ebc

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 1330ebc was dcf0e25, checked in by George Boudreau <georgeb@…>, 17 years ago

bug hunt in custom package examples

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