mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
31 lines
1 KiB
Bash
31 lines
1 KiB
Bash
# Maintainer: Mike Staszel <mikestaszel@openpogo.com>
|
|
|
|
pkgname=ca-certificates
|
|
pkgver=20090814
|
|
pkgrel=1
|
|
pkgdesc='Common CA certificates'
|
|
arch=('arm')
|
|
url='http://packages.qa.debian.org/c/ca-certificates.html'
|
|
license=('MPL' 'GPL')
|
|
depends=('bash' 'run-parts' 'openssl' 'findutils' 'coreutils' 'sed')
|
|
makedepends=('ruby')
|
|
install=ca-certificates.install
|
|
backup=('etc/ca-certificates.conf')
|
|
source=(https://launchpad.net/ubuntu/karmic/+source/ca-certificates/20090814/+files/ca-certificates_20090814.tar.gz)
|
|
md5sums=('307052c985bec7f9a00eb84293eef779')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
install -d -m755 $pkgdir/{etc/ca-certificates/update.d,usr/{sbin,share/ca-certificates}}
|
|
install -D -m644 sbin/update-ca-certificates.8 $pkgdir/usr/share/man/man8/update-ca-certificates.8
|
|
make
|
|
make install DESTDIR=$pkgdir
|
|
|
|
(
|
|
echo "# Automatically generated by ${pkgname}-${pkgver}-${pkgrel}"
|
|
echo "# "
|
|
cd $pkgdir/usr/share/ca-certificates
|
|
find . -name '*.crt' | sort | cut -b3-
|
|
) > $pkgdir/etc/ca-certificates.conf
|
|
}
|