34 lines
1 KiB
Text
34 lines
1 KiB
Text
# Template file for 'ca-certificates'
|
|
pkgname=ca-certificates
|
|
version=20121105
|
|
revision=4
|
|
noarch=yes
|
|
makedepends="python"
|
|
fulldepends="openssl run-parts"
|
|
conf_files="/etc/ca-certificates.conf"
|
|
short_desc="Common CA certificates"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://packages.qa.debian.org/c/ca-certificates.html"
|
|
license="GPL-2"
|
|
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.gz"
|
|
checksum=77551086b074b8c8a6c0fbb595b7efdd5a274cfc8505f015332ff06f4c76a012
|
|
long_desc="
|
|
This package includes PEM files of CA certificates to allow SSL-based
|
|
applications to check for the authenticity of SSL connections."
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/share/${pkgname}
|
|
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
|
|
}
|