mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
#
|
|
# Core packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=ca-certificates
|
|
pkgver=20110502
|
|
pkgrel=2
|
|
pkgdesc='Common CA certificates'
|
|
arch=('any')
|
|
url='http://packages.qa.debian.org/c/ca-certificates.html'
|
|
license=('MPL' 'GPL')
|
|
source=("http://ftp.debian.org/debian/pool/main/c/${pkgname}/${pkgname}_${pkgver}.tar.gz")
|
|
depends=('bash' 'run-parts' 'openssl' 'findutils' 'coreutils' 'sed')
|
|
makedepends=('ruby' 'python2')
|
|
install=ca-certificates.install
|
|
backup=('etc/ca-certificates.conf')
|
|
md5sums=('4216da872955cb73b077be68b6b5f975')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
sed 's|/usr/bin/python|/usr/bin/python2|g' -i mozilla/certdata2pem.py
|
|
sed 's|python|python2|g' -i mozilla/Makefile
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
install -d -m755 ${pkgdir}/{etc/ca-certificates/update.d,usr/{sbin,share/ca-certificates},etc/ssl/certs}
|
|
make install DESTDIR=${pkgdir}
|
|
install -D -m644 sbin/update-ca-certificates.8 ${pkgdir}/usr/share/man/man8/update-ca-certificates.8
|
|
|
|
(
|
|
echo "# Automatically generated by ${pkgname}-${pkgver}-${pkgrel}"
|
|
echo "# see update-ca-certificates man page"
|
|
echo "# "
|
|
cd ${pkgdir}/usr/share/ca-certificates
|
|
find . -name '*.crt' | sort | cut -b3-
|
|
) > ${pkgdir}/etc/ca-certificates.conf
|
|
}
|