40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
# Template file for 'ca-certificates'
|
|
pkgname=ca-certificates
|
|
version=20150426
|
|
revision=3
|
|
noarch="yes"
|
|
hostmakedepends="libressl-openssl python"
|
|
depends="virtual?openssl run-parts"
|
|
conf_files="/etc/ca-certificates.conf"
|
|
short_desc="Common CA certificates for SSL/TLS"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://packages.qa.debian.org/c/ca-certificates.html"
|
|
license="GPL-2"
|
|
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.xz"
|
|
checksum=37dbaa93ed64cc4ae93ac295f9248fbc741bd51376438cfb1257f17efab5494f
|
|
|
|
post_extract() {
|
|
cp ${FILESDIR}/remove-expired-certs.sh ${wrksrc}/mozilla
|
|
sed -i ${wrksrc}/mozilla/Makefile \
|
|
-e "s;\(.*\)\(python .*\);\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
|
|
}
|