blob: 8f6c62a1088bc500fbd37d72f72aa5757efd694c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR="$1" install
clinst -Dm755 -t "$1/etc/ssl" update-certdata.sh
# Link ca-certificates to cert.pem
ln -s ../cert.pem "$1/etc/ssl/certs/ca-certificates.crt"
|