2011-06-22 19:16:42 +00:00
|
|
|
# Template file for 'ca-certificates'
|
|
|
|
pkgname=ca-certificates
|
2013-01-22 07:36:47 +00:00
|
|
|
version=20121105
|
|
|
|
revision=4
|
2013-04-12 06:55:23 +00:00
|
|
|
makedepends="python openssl run-parts"
|
2011-06-22 19:16:42 +00:00
|
|
|
short_desc="Common CA certificates"
|
2011-07-17 06:27:36 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-22 19:16:42 +00:00
|
|
|
homepage="http://packages.qa.debian.org/c/ca-certificates.html"
|
2011-06-22 19:48:55 +00:00
|
|
|
license="GPL-2"
|
2012-06-29 08:03:41 +00:00
|
|
|
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.gz"
|
2013-01-22 07:36:47 +00:00
|
|
|
checksum=77551086b074b8c8a6c0fbb595b7efdd5a274cfc8505f015332ff06f4c76a012
|
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
|
|
|
|
|
2013-01-21 16:13:22 +00:00
|
|
|
mv ${DESTDIR}/"usr/share/ca-certificates/mozilla/Certinomis_-_Autorité_Racine.crt" \
|
|
|
|
${DESTDIR}/usr/share/ca-certificates/mozilla/Certinomis_-_Autorite_Racine.crt
|
|
|
|
|
2011-06-22 19:16:42 +00:00
|
|
|
cd ${DESTDIR}/usr/share/ca-certificates
|
|
|
|
find . -name '*.crt' | sort | cut -b3- \
|
|
|
|
> ${DESTDIR}/etc/ca-certificates.conf
|
|
|
|
}
|
2013-04-12 06:55:23 +00:00
|
|
|
|
|
|
|
ca-certificates_package() {
|
|
|
|
conf_files="/etc/ca-certificates.conf"
|
|
|
|
depends="openssl run-parts"
|
|
|
|
noarch="yes"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr
|
|
|
|
}
|
|
|
|
}
|