19 lines
525 B
Text
Executable file
19 lines
525 B
Text
Executable file
# Description: Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=p11-kit
|
|
version=0.23.20
|
|
release=1
|
|
source=(https://github.com/p11-glue/p11-kit/releases/download/$version/p11-kit-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-trust-paths=/etc/pki/anchors
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|