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