void-packages/srcpkgs/ca-certificates/template

32 lines
960 B
Plaintext
Raw Normal View History

2011-06-22 21:16:42 +02:00
# Template file for 'ca-certificates'
pkgname=ca-certificates
2014-04-09 09:58:06 +02:00
version=20140325
revision=2
2013-09-28 09:53:31 +02:00
wrksrc="${pkgname}"
noarch="yes"
2013-09-28 10:01:16 +02:00
hostmakedepends="python openssl run-parts"
makedepends="openssl openssl-crehash run-parts"
depends="${makedepends}"
conf_files="/etc/ca-certificates.conf"
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"
2014-03-14 09:36:42 +01:00
distfiles="${DEBIAN_SITE}/main/c/${pkgname}/${pkgname}_${version}.tar.xz"
2014-04-09 09:58:06 +02:00
checksum=c0e3d8c517995db2737f7f1a9b69d654b8823fa6d337871c6ce111fcf083454a
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
}