31 lines
1015 B
Bash
31 lines
1015 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=gsasl
|
|
pkgver=1.10.0
|
|
pkgrel=1
|
|
pkgdesc="Simple Authentication and Security Layer framework and a few common SASL mechanisms"
|
|
arch=('i686' 'x86_64')
|
|
url='https://josefsson.org/gsasl/'
|
|
license=('GPL-3')
|
|
depends=('gnutls' 'libidn' 'krb5' 'libgcrypt')
|
|
makedepends=('gettext-tiny' 'intltool')
|
|
source=("ftp://ftp.gnu.org/gnu/gsasl/${pkgname}-${pkgver}.tar.gz"{,.sig})
|
|
sha512sums=('8b1dc87e85dbfd0255b3b43c4b7f9c2e896cb03efe4cd4af86393b62fd193665aae4ce59e66db736722e32babfcea6d4f6ddd3c5f069dcc4210f7e9531043e4a'
|
|
'SKIP')
|
|
validpgpkeys=('B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE' # Simon Josefsson <simon@josefsson.org>
|
|
'9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson <simon@josefsson.org>
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-gssapi-impl=mit
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
}
|