2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-11-15 11:10:08 -07:00
repo/core/libressl/build

14 lines
205 B
Plaintext
Raw Normal View History

2019-05-16 11:05:27 -06:00
#!/bin/sh -e
./configure \
2019-06-18 10:59:29 -06:00
--prefix=/usr \
--sysconfdir=/etc
2019-05-16 11:05:27 -06:00
make
make DESTDIR="$1" install
2021-07-01 10:20:12 -06:00
cp -f update-certdata.sh "$1/etc/ssl"
2021-07-06 05:29:26 -06:00
# Remove library documentation.
rm -rf "$1/usr/share/man/man3"