2014-01-10 16:39:44 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# ca-certificates
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2019-05-13 21:26:22 +02:00
|
|
|
CA_CERTIFICATES_VERSION = 20190110
|
2014-03-25 18:56:52 +01:00
|
|
|
CA_CERTIFICATES_SOURCE = ca-certificates_$(CA_CERTIFICATES_VERSION).tar.xz
|
2019-05-13 21:26:22 +02:00
|
|
|
CA_CERTIFICATES_SITE = http://snapshot.debian.org/archive/debian/20190513T145054Z/pool/main/c/ca-certificates
|
2016-05-04 16:17:54 +02:00
|
|
|
CA_CERTIFICATES_DEPENDENCIES = host-openssl
|
|
|
|
# ca-certificates can be built with either python 2 or python 3
|
|
|
|
# but it must be at least python 2.7
|
|
|
|
CA_CERTIFICATES_DEPENDENCIES += \
|
|
|
|
$(if $(BR2_PACKAGE_PYTHON3),host-python3,host-python)
|
2017-03-30 15:43:42 +02:00
|
|
|
CA_CERTIFICATES_LICENSE = GPL-2.0+ (script), MPL-2.0 (data)
|
2014-01-10 16:39:44 +01:00
|
|
|
CA_CERTIFICATES_LICENSE_FILES = debian/copyright
|
|
|
|
|
|
|
|
define CA_CERTIFICATES_BUILD_CMDS
|
2018-06-17 00:06:00 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) clean all
|
2014-01-10 16:39:44 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define CA_CERTIFICATES_INSTALL_TARGET_CMDS
|
|
|
|
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/share/ca-certificates
|
|
|
|
$(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/ssl/certs
|
2016-10-17 18:06:21 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install DESTDIR=$(TARGET_DIR)
|
2014-01-10 16:39:44 +01:00
|
|
|
rm -f $(TARGET_DIR)/usr/sbin/update-ca-certificates
|
|
|
|
|
|
|
|
# Remove any existing certificates under /etc/ssl/certs
|
|
|
|
rm -f $(TARGET_DIR)/etc/ssl/certs/*
|
|
|
|
|
|
|
|
# Create symlinks to certificates under /etc/ssl/certs
|
2015-04-03 01:09:06 +02:00
|
|
|
# and generate the bundle
|
2014-01-10 16:39:44 +01:00
|
|
|
cd $(TARGET_DIR) ;\
|
2018-06-17 00:06:01 +02:00
|
|
|
for i in `find usr/share/ca-certificates -name "*.crt" | LC_COLLATE=C sort` ; do \
|
2014-01-10 16:39:44 +01:00
|
|
|
ln -sf ../../../$$i etc/ssl/certs/`basename $${i} .crt`.pem ;\
|
2018-06-17 00:05:59 +02:00
|
|
|
cat $$i ;\
|
|
|
|
done >$(@D)/ca-certificates.crt
|
2014-01-10 16:39:44 +01:00
|
|
|
|
|
|
|
# Create symlinks to the certificates by their hash values
|
2017-07-05 13:14:19 +02:00
|
|
|
$(HOST_DIR)/bin/c_rehash $(TARGET_DIR)/etc/ssl/certs
|
2018-06-17 00:05:59 +02:00
|
|
|
|
|
|
|
# Install the certificates bundle
|
|
|
|
$(INSTALL) -D -m 644 $(@D)/ca-certificates.crt \
|
|
|
|
$(TARGET_DIR)/etc/ssl/certs/ca-certificates.crt
|
2014-01-10 16:39:44 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|