X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 1E35BDD19B2 for ; Sat, 12 Dec 2015 12:25:31 +0000 (UTC) Received: from apollo.thewebhostserver.com (unknown [46.28.50.181]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id AA0B7DC685A for ; Sat, 12 Dec 2015 12:25:30 +0000 (UTC) Received: from [81.4.121.188] (port=37736 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.86) (envelope-from ) id 1a7jEt-002erR-MW for alpine-aports@lists.alpinelinux.org; Sat, 12 Dec 2015 12:25:27 +0000 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 07/15] testing/perl-authen-ntlm: new aport Date: Sat, 12 Dec 2015 12:25:18 +0000 Message-Id: <1449923126-5577-7-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1449923126-5577-1-git-send-email-developer@it-offshore.co.uk> References: <1449923126-5577-1-git-send-email-developer@it-offshore.co.uk> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/perl-authen-ntlm/APKBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 testing/perl-authen-ntlm/APKBUILD diff --git a/testing/perl-authen-ntlm/APKBUILD b/testing/perl-authen-ntlm/APKBUILD new file mode 100644 index 0000000..dd9a9a8 --- /dev/null +++ b/testing/perl-authen-ntlm/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=perl-authen-ntlm +pkgver=1.09 +_realname=NTLM-$pkgver +pkgrel=0 +pkgdesc="NTLM authentication for Mail::IMAPClient" +url="http://search.cpan.org/dist/NTLM/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="" +cpanmakedepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/N/NB/NBEBOUT/$_realname.tar.gz" + +_builddir="$srcdir"/$_realname + +build() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="da314ee94b14af2a2f39b6f2c0046e73 NTLM-1.09.tar.gz" +sha256sums="c823e30cda76bc15636e584302c960e2b5eeef9517c2448f7454498893151f85 NTLM-1.09.tar.gz" +sha512sums="faae9a4a39f483a9612e5a7daec15bb8ddd940ccc73e52372dd004a9067336fccc4c490deafb3eaa0cf56c0dfe3a085cb6bba38631a5122c2f2fa6e960845039 NTLM-1.09.tar.gz" -- 2.6.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---