mirror of
https://gitlab.archlinux.org/archlinux/packaging/packages/pkcs11-helper.git
synced 2025-12-22 06:30:01 +00:00
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
# Maintainer:
|
|
# Contributor: Stanislaw Datskevich <me a nek0 net>
|
|
# Contributor: Gregor Robinson <gregor@fiatflux.co.uk>
|
|
# Contributor: Martin Perner <martin dot perner at gmail dot com>
|
|
|
|
pkgname=pkcs11-helper
|
|
pkgver=1.27.0
|
|
pkgrel=2
|
|
pkgdesc="A library that simplifies the interaction with PKCS11 providers for end-user applications using a simple API and optional OpenSSL engine"
|
|
arch=('x86_64')
|
|
url='https://github.com/OpenSC/pkcs11-helper'
|
|
license=(GPL BSD)
|
|
depends=('gnutls' 'nss' 'openssl')
|
|
provides=('libpkcs11-helper.so')
|
|
source=("https://github.com/OpenSC/${pkgname}/releases/download/${pkgname}-${pkgver%.0}/${pkgname}-${pkgver}.tar.bz2"
|
|
'0001-nss-use-nss-pkcs11-h.patch')
|
|
sha256sums=('653730f0c561bbf5941754c0783976113589b2dc64a0661c908dc878bfa4e58b'
|
|
'a4a27c9f71c5f2cf57a79eeba2c6749424393c20e6b5967f46095b10f393f439')
|
|
|
|
prepare() {
|
|
cd pkcs11-helper-$pkgver
|
|
|
|
patch -Np1 < ../0001-nss-use-nss-pkcs11-h.patch
|
|
}
|
|
|
|
build() {
|
|
cd pkcs11-helper-$pkgver
|
|
|
|
libtoolize
|
|
aclocal
|
|
autoheader
|
|
automake --add-missing
|
|
autoreconf -v
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd pkcs11-helper-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
mkdir -p "$pkgdir"/usr/share/licenses/$pkgname/
|
|
install -D -m0644 COPYING* "$pkgdir"/usr/share/licenses/$pkgname/
|
|
}
|
|
|