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 6C61BDC6ADE 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 45F41DC1CB0 for ; Sat, 12 Dec 2015 12:25:31 +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 1a7jEu-002erR-KK for alpine-aports@lists.alpinelinux.org; Sat, 12 Dec 2015 12:25:28 +0000 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 14/15] testing/perl-uri-escape: new aport Date: Sat, 12 Dec 2015 12:25:25 +0000 Message-Id: <1449923126-5577-14-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-uri-escape/APKBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 testing/perl-uri-escape/APKBUILD diff --git a/testing/perl-uri-escape/APKBUILD b/testing/perl-uri-escape/APKBUILD new file mode 100644 index 0000000..c55aae1 --- /dev/null +++ b/testing/perl-uri-escape/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=perl-uri-escape +pkgver=1.69 +_realname=URI-$pkgver +pkgrel=0 +pkgdesc="Percent-encode and percent-decode unsafe characters" +url="http://search.cpan.org/dist/URI/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="" +cpanmakedepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/$_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="3c56aee0300bce5a440ccbd558277ea0 URI-1.69.tar.gz" +sha256sums="b74b16ea626b6f8061821bb350674c638a98be1fc766eadb24fec6635998b42d URI-1.69.tar.gz" +sha512sums="4e58cd450c58be4c3e0254c8e53bd0b4d3516468efb466c933343efc12191856bfc6c0d5c3de3b523e66d4930c2426f0089d5cd9ece7b4a5b8aff0a9596064cc URI-1.69.tar.gz" -- 2.6.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---