mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
13 lines
384 B
Bash
Executable file
13 lines
384 B
Bash
Executable file
# SPDX-FileCopyrightText: 2022 Samuel Tyler <samuel@samuelt.me>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_compile() {
|
|
cp -a nss/lib/ckfw/builtins/certdata.txt .
|
|
mk-ca-bundle -n -s ALL -m
|
|
}
|
|
|
|
src_install() {
|
|
install -D -m 644 ca-bundle.crt "${DESTDIR}/etc/ssl/certs/ca-certificates.crt"
|
|
ln -s /etc/ssl/certs/ca-certificates.crt "${DESTDIR}/etc/ssl/certs.pem"
|
|
}
|