void-packages/srcpkgs/ca-certificates/template

35 lines
1 KiB
Text
Raw Normal View History

2011-06-22 19:16:42 +00:00
# Template file for 'ca-certificates'
pkgname=ca-certificates
2012-06-29 08:03:41 +00:00
version=20120623
revision=1
noarch=yes
makedepends="python"
fulldepends="findutils sed openssl run-parts"
2012-06-29 08:03:41 +00:00
conf_files="/etc/ca-certificates.conf"
2011-06-22 19:16:42 +00:00
short_desc="Common CA certificates"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-22 19:16:42 +00:00
homepage="http://packages.qa.debian.org/c/ca-certificates.html"
license="GPL-2"
2012-06-29 08:03:41 +00:00
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.gz"
checksum=878cd1130ba056fe5f96decde7e5fc1b71d35eb8565a1515744912e100731ee9
2011-06-22 19:16:42 +00:00
long_desc="
2011-07-19 07:50:34 +00:00
This package includes PEM files of CA certificates to allow SSL-based
applications to check for the authenticity of SSL connections."
2011-06-22 19:16:42 +00:00
do_build() {
make ${makejobs}
}
do_install() {
2011-10-27 11:30:48 +00:00
vmkdir usr/share/${pkgname}
vmkdir usr/sbin
vmkdir etc/ssl/certs
2011-06-22 19:16:42 +00:00
make install DESTDIR=${DESTDIR}
2011-10-27 11:30:48 +00:00
install -Dm644 sbin/update-ca-certificates.8 \
2011-06-22 19:16:42 +00:00
${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
}