diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-10 21:30:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-10 21:31:28 +0000 |
commit | b0198ddbeefc49c75c7a796806e282a0a018fb03 (patch) | |
tree | 6623ae1691e5344beafe7f6aec6725afdcea0284 /testing/cntlm | |
parent | e86ae770668741c1987b141709192abc5f6f1df4 (diff) | |
download | aports-b0198ddbeefc49c75c7a796806e282a0a018fb03.tar.bz2 aports-b0198ddbeefc49c75c7a796806e282a0a018fb03.tar.xz |
testing/cntlm: new aport
NTLM Session Response / NTLMv2 authenticating HTTP proxy
http://cntlm.sourceforge.net/
ref #1075
Diffstat (limited to 'testing/cntlm')
-rw-r--r-- | testing/cntlm/APKBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/cntlm/APKBUILD b/testing/cntlm/APKBUILD new file mode 100644 index 0000000000..13a634142e --- /dev/null +++ b/testing/cntlm/APKBUILD @@ -0,0 +1,43 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=cntlm +pkgver=0.92.3 +pkgrel=0 +pkgdesc="NTLM Session Response / NTLMv2 authenticating HTTP proxy" +url="http://cntlm.sourceforge.net/" +arch="all" +license="GPLv2+" +depends="" +makedepends="" +install="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/project/cntlm/cntlm/cntlm%20$pkgver/cntlm-$pkgver.tar.gz" + +_builddir="$srcdir"/cntlm-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="0d7fcfbfbef0546306b896be246caa88 cntlm-0.92.3.tar.gz" |