46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
# Template file for 'ca-certificates'
|
|
pkgname=ca-certificates
|
|
reverts=20180409_1
|
|
version=20170717
|
|
revision=3
|
|
wrksrc="${pkgname}"
|
|
bootstrap=yes
|
|
noarch="yes"
|
|
hostmakedepends="libressl"
|
|
depends="libressl>=2.2.4_2 run-parts"
|
|
conf_files="/etc/ca-certificates.conf"
|
|
short_desc="Common CA certificates for SSL/TLS"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="https://tracker.debian.org/pkg/ca-certificates"
|
|
license="GPL-2, MPL-2.0"
|
|
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.xz"
|
|
checksum=e487639b641fa75445174734dd6e9d600373e3248b3d86a7e3c6d0f6977decd2
|
|
|
|
post_extract() {
|
|
$BUILD_CC $BUILD_CFLAGS ${FILESDIR}/certdata2pem.c -o ${wrksrc}/mozilla/certdata2pem
|
|
cp ${FILESDIR}/remove-expired-certs.sh ${wrksrc}/mozilla
|
|
sed -i ${wrksrc}/mozilla/Makefile \
|
|
-e 's,python certdata2pem.py,./certdata2pem,g'
|
|
sed -i ${wrksrc}/mozilla/Makefile \
|
|
-e "s;\(.*\)\(certdata2pem.*\);\1\2\n\1./remove-expired-certs.sh;"
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/share/${pkgname}
|
|
vmkdir usr/bin
|
|
vmkdir usr/sbin
|
|
vmkdir etc/ssl/certs
|
|
make install DESTDIR=${DESTDIR}
|
|
install -Dm644 sbin/update-ca-certificates.8 \
|
|
${DESTDIR}/usr/share/man/man8/update-ca-certificates.8
|
|
cd ${DESTDIR}/usr/share/ca-certificates
|
|
find . -name '*.crt' | sort | cut -b3- > ${DESTDIR}/etc/ca-certificates.conf
|
|
sed -i 's,c_rehash,openssl certhash,g' ${DESTDIR}/usr/sbin/update-ca-certificates
|
|
mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
|
|
ln -s /etc/ssl/certs/ca-certificates.crt ${DESTDIR}/etc/ssl/certs.pem
|
|
}
|