diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2012-01-08 12:32:10 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-16 15:24:46 +0000 |
commit | 29cfa8fca59bf6b4957a0a33ea6b20430bd5d148 (patch) | |
tree | 6a5ea39fd0efa8a4debf7b8a27d626c4a9a911fe /testing | |
parent | eef2c0e1fdbe700776d80dd24232d71b4d3bf0ab (diff) | |
download | aports-29cfa8fca59bf6b4957a0a33ea6b20430bd5d148.tar.bz2 aports-29cfa8fca59bf6b4957a0a33ea6b20430bd5d148.tar.xz |
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/
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libgss/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/libgss/APKBUILD b/testing/libgss/APKBUILD new file mode 100644 index 0000000000..887eef0e8d --- /dev/null +++ b/testing/libgss/APKBUILD @@ -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" |