mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 00:34:26 +02:00
47 lines
1.1 KiB
Text
47 lines
1.1 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=libgsasl
|
|
pkgver=2.2.2
|
|
pkgrel=0
|
|
pkgdesc="An implementation of the Simple Authentication and Security Layer framework"
|
|
url="https://www.gnu.org/software/gsasl/"
|
|
arch="all"
|
|
license="LGPL-2.0-or-later"
|
|
depends_dev="$pkgname-tools=$pkgver-r$pkgrel"
|
|
makedepends="libidn-dev libgss-dev libgcrypt-dev krb5-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools"
|
|
source="https://ftp.gnu.org/gnu/gsasl/gsasl-$pkgver.tar.gz"
|
|
builddir="$srcdir/gsasl-$pkgver"
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--with-libgcrypt \
|
|
--with-gssapi-impl=mit \
|
|
--disable-nls \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make tests
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
tools() {
|
|
pkgdesc="$pkgdesc (tools)"
|
|
|
|
amove usr/bin
|
|
}
|
|
|
|
sha512sums="
|
|
62fb4a9383392e4816a036f3e8f408c5161a10723e59f0a8f6df5f72101e0b644787f3b07a71c772628fc4f4050960c842c7500736edacd24313ef654e703bc9 gsasl-2.2.2.tar.gz
|
|
"
|