2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-16 04:42:26 +00:00
repo/core/ca-certificates/build

24 lines
511 B
Plaintext
Raw Normal View History

2019-05-14 20:05:50 +00:00
#!/bin/sh -e
2019-05-13 14:32:56 +00:00
2019-05-12 13:15:19 +00:00
gcc certdata2pem.c -o "mozilla/certdata2pem"
sed -i mozilla/Makefile \
-e 's,python certdata2pem.py,./certdata2pem,g'
patch -p1 -i update-ca-certificates-destdir.patch
make
cd "$1" || return 1
2019-05-12 13:15:19 +00:00
install -m0755 -d usr/share/ca-certificates
install -m0755 -d usr/bin
install -m0755 -d usr/sbin
install -m0755 -d etc/ssl/certs
cd - || return 1
make DESTDIR="$1" install
2019-05-12 13:15:19 +00:00
cd "$1/usr/share/ca-certificates" || return 1
find . -name '*.crt' | sort | cut -b3- > "$1/etc/ca-certificates.conf"