hblock: bump to 3.4.0
[kiss-trunc88.git] / openssl / build
blob240bd4806bc47b8b84326f3561416546dadd91be
1 #!/bin/sh -e
3 ./Configure \
4 --prefix=/usr \
5 --openssldir=/etc/ssl \
6 --libdir=lib \
7 no-unit-test \
8 shared \
9 linux-x86_64
11 make depend
12 make
14 make DESTDIR="$1" \
15 install_sw \
16 install_ssldirs \
17 install_man_docs
19 cp -f update-certdata.sh "$1/etc/ssl"
21 # Libretls is LibreSSL's libtls library for OpenSSL.
23 cd libretls
25 ./configure \
26 --prefix=/usr \
27 --with-openssl="$1/usr"
29 make
30 make install