summaryrefslogtreecommitdiff
path: root/extra/gsasl/PKGBUILD
blob: d7f0999c6c00245fcf4213391d8523b216799079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $Id: PKGBUILD 197247 2013-10-24 18:39:54Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>

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" "mips64el")
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
}