mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 12:34:37 +08:00
63 lines
1.6 KiB
Bash
63 lines
1.6 KiB
Bash
# $Id$
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
pkgname=p11-kit
|
|
pkgver=0.23.8
|
|
pkgrel=1
|
|
pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
|
|
arch=(i686 x86_64)
|
|
url="https://p11-glue.freedesktop.org"
|
|
license=(BSD)
|
|
depends=(glibc libtasn1 libffi)
|
|
makedepends=(git)
|
|
_commit=25474901cf9c1fb39ae5dc73a2f2b4dd34e81fdc # tags/0.23.8^0
|
|
source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit"
|
|
libnssckbi-compat.patch)
|
|
sha256sums=('SKIP'
|
|
'8f763cdbc6c0ca6c5a7898f9fd6f3018b7ac5b1aca36f67c6c813343c2962962')
|
|
validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed 's/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
|
|
# Build and install an additional library (libnssckbi-p11-kit.so) which
|
|
# is a copy of p11-kit-trust.so but uses the same label for root certs as
|
|
# libnssckbi.so ("Builtin Object Token" instead of "Default Trust")
|
|
# https://bugs.freedesktop.org/show_bug.cgi?id=66161
|
|
patch -Np1 -i ../libnssckbi-compat.patch
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib \
|
|
--with-module-path=/usr/lib/pkcs11 \
|
|
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
ln -srf "$pkgdir/usr/bin/update-ca-trust" "$pkgdir/usr/lib/p11-kit/trust-extract-compat"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|