void-packages/srcpkgs/ca-certificates/template

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-06-22 21:16:42 +02:00
# Template file for 'ca-certificates'
pkgname=ca-certificates
2013-06-22 07:36:10 +02:00
version=20130610
2013-05-01 11:33:49 +02:00
revision=1
makedepends="python openssl run-parts"
2011-06-22 21:16:42 +02:00
short_desc="Common CA certificates"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-22 21:16:42 +02:00
homepage="http://packages.qa.debian.org/c/ca-certificates.html"
license="GPL-2"
2012-06-29 10:03:41 +02:00
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.gz"
2013-06-22 07:36:10 +02:00
checksum=9529a9cdfca53dc2ecea96171d8d2ff6ff343843f894af4d446686f02a6c03f2
2011-06-22 21:16:42 +02:00
long_desc="
2011-07-19 09:50:34 +02: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 21:16:42 +02:00
do_build() {
make ${makejobs}
}
do_install() {
2011-10-27 13:30:48 +02:00
vmkdir usr/share/${pkgname}
vmkdir usr/sbin
vmkdir etc/ssl/certs
2011-06-22 21:16:42 +02:00
make install DESTDIR=${DESTDIR}
2011-10-27 13:30:48 +02:00
install -Dm644 sbin/update-ca-certificates.8 \
2011-06-22 21:16:42 +02:00
${DESTDIR}/usr/share/man/man8/update-ca-certificates.8
cd ${DESTDIR}/usr/share/ca-certificates
2013-05-01 11:33:49 +02:00
find . -name '*.crt' | sort | cut -b3- > ${DESTDIR}/etc/ca-certificates.conf
2011-06-22 21:16:42 +02:00
}
ca-certificates_package() {
conf_files="/etc/ca-certificates.conf"
depends="openssl run-parts"
noarch="yes"
pkg_install() {
2013-05-01 11:33:49 +02:00
vmove all
}
}