2019-09-28 00:17:56 +08:00
|
|
|
# Description: Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules
|
|
|
|
# URL:
|
2019-11-10 23:58:56 +08:00
|
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
2019-09-28 00:17:56 +08:00
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=p11-kit
|
2021-04-18 08:19:42 +08:00
|
|
|
version=0.23.22
|
2019-09-28 00:17:56 +08:00
|
|
|
release=1
|
2020-06-12 16:42:33 +08:00
|
|
|
source=(https://github.com/p11-glue/p11-kit/releases/download/$version/p11-kit-$version.tar.xz)
|
2019-09-28 00:17:56 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--with-trust-paths=/etc/pki/anchors
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|