Initial APKBUILD for libgss

Package description:
GSS is an implementation of the Generic Security Service Application
Program Interface (GSS-API). GSS-API is used by network servers to
provide security services, e.g., to authenticate SMTP/IMAP clients
against SMTP/IMAP servers.

Website: http://www.gnu.org/software/gss/
This commit is contained in:
Fabian Affolter 2012-01-08 12:32:10 +00:00 committed by Natanael Copa
parent eef2c0e1fd
commit 29cfa8fca5

36
testing/libgss/APKBUILD Normal file
View File

@ -0,0 +1,36 @@
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=libgss
pkgver=0.1.5
pkgrel=0
pkgdesc="An implementation of the Generic Security Service Application Program Interface"
url="http://www.gnu.org/software/gss/"
arch="all"
license="GPL3+"
depends=""
depends_dev="pkgconfig"
makedepends="$depends_dev gettext valgrind-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="ftp://alpha.gnu.org/gnu/gss/gss-$pkgver.tar.gz"
_builddir="$srcdir"/gss-$pkgver
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| 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="d65431dd4dd35cfb8f4433b41ff75fbc gss-0.1.5.tar.gz"