# $Id: PKGBUILD 197247 2013-10-24 18:39:54Z eric $ # Maintainer: Eric BĂ©langer pkgname=gsasl pkgver=1.8.0 pkgrel=3 pkgdesc="Simple Authentication and Security Layer framework and a few common SASL mechanisms" arch=('i686' 'x86_64') url="http://josefsson.org/gsasl/" license=('GPL') depends=('gnutls' 'libidn' 'krb5' 'libgcrypt') install=gsasl.install source=(ftp://ftp.gnu.org/gnu/gsasl/${pkgname}-${pkgver}.tar.gz) sha1sums=('343fd97ae924dc406986c02fb9b889f4114239ae') build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr --with-gssapi-impl=mit make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install }