29 lines
885 B
Text
29 lines
885 B
Text
# Template file for 'ca-certificates'
|
|
pkgname=ca-certificates
|
|
version=20141019
|
|
revision=1
|
|
noarch="yes"
|
|
hostmakedepends="python"
|
|
depends="virtual?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.xz"
|
|
checksum=684902d3f4e9ad27829f4af0d9d2d588afed03667997579b9c2be86fcd1eb73a
|
|
|
|
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
|
|
}
|