Date: Friday, August 12, 2022 @ 13:43:00
Author: felixonmars
Revision: 452612
archrelease: copy trunk to staging-x86_64
Added:
gsasl/repos/staging-x86_64/
gsasl/repos/staging-x86_64/PKGBUILD
(from rev 452611, gsasl/trunk/PKGBUILD)
gsasl/repos/staging-x86_64/keys/
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: gsasl/repos/staging-x86_64/PKGBUILD (from rev 452611,
gsasl/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-08-12 13:43:00 UTC (rev 452612)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Eric Bélanger <[email protected]>
+
+pkgname=gsasl
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Simple Authentication and Security Layer framework and a few common
SASL mechanisms"
+arch=('x86_64')
+url="https://josefsson.org/gsasl/"
+license=('GPL')
+depends=('gnutls' 'libidn' 'krb5' 'libgcrypt')
+source=(https://ftp.gnu.org/gnu/gsasl/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('b7c4e3dfdaa50eaba38f3c0914dedb4bc689d1226fcf162e5bfb3942fa6ce1e96405715a747adca78150709f34830f699e9f995f04ce586cd3d0c14b275910e6'
+ 'SKIP')
+validpgpkeys=('B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE' # Simon Josefsson
<[email protected]>
+ '9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
<[email protected]>
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --with-gssapi-impl=mit
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}