Date: Tuesday, November 1, 2022 @ 13:20:48
Author: felixonmars
Revision: 1340090
archrelease: copy trunk to community-staging-x86_64
Added:
libp11/repos/community-staging-x86_64/
libp11/repos/community-staging-x86_64/PKGBUILD
(from rev 1340088, libp11/trunk/PKGBUILD)
libp11/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
Copied: libp11/repos/community-staging-x86_64/PKGBUILD (from rev 1340088,
libp11/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-11-01 13:20:48 UTC (rev 1340090)
@@ -0,0 +1,31 @@
+# Maintainer: Massimiliano Torromeo <[email protected]>
+# Contributor: Brian Bidulock <[email protected]>
+# Contributor: Timothy Redaelli <[email protected]>
+# Contributor: kevku <[email protected]>
+# Contributor: Rene Pärts <[email protected]>
+
+pkgname=libp11
+pkgver=0.4.12
+pkgrel=2
+pkgdesc="A library implementing a small layer on top of the PKCS11 API"
+arch=('x86_64')
+url="https://github.com/OpenSC/libp11/wiki"
+license=('LGPL')
+depends=('openssl')
+options=('debug')
+source=("https://github.com/OpenSC/${pkgname}/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('1e1a2533b3fcc45fde4da64c9c00261b1047f14c3f911377ebd1b147b3321cfd'
+ 'SKIP')
+validpgpkeys=('AC915EA30645D9D3D4DAE4FEB1048932DD3AAAA3')
+
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}