mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 17:22:07 +01:00
40 lines
991 B
Plaintext
40 lines
991 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=libgsasl
|
|
pkgver=1.6.1
|
|
pkgrel=1
|
|
pkgdesc="An implementation of the Simple Authentication and Security Layer framework"
|
|
url="http://www.gnu.org/software/gsasl/"
|
|
arch="all"
|
|
license="LGPL2+"
|
|
depends=""
|
|
depends_dev="pkgconfig"
|
|
makedepends="$depends_dev libidn-dev libgss-dev libgcrypt-dev"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="ftp://ftp.gnu.org/gnu/gsasl/$pkgname-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--with-libgcrypt \
|
|
--disable-nls \
|
|
|| return 1
|
|
make || return 1
|
|
make tests || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="143ab88d06a5217915e6b649d7ffc018 libgsasl-1.6.1.tar.gz"
|