2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-15 20:32:26 +00:00
repo/core/openssl/build

24 lines
327 B
Plaintext
Raw Normal View History

2021-07-07 20:24:26 +00:00
#!/bin/sh -e
make depend
2021-07-15 12:02:11 +00:00
make
make DESTDIR="$1" \
install_sw \
install_ssldirs \
install_man_docs
2021-07-07 20:24:26 +00:00
cp -f update-certdata.sh "$1/etc/ssl"
2021-07-10 20:51:34 +00:00
# Libretls is LibreSSL's libtls library for OpenSSL.
(
cd libretls
./configure \
--prefix=/usr \
--with-openssl="$1/usr"
make
2021-07-15 12:02:11 +00:00
make install
2021-07-10 20:51:34 +00:00
)