diff options
Diffstat (limited to 'user/perl-lwp-protocol-https')
-rw-r--r-- | user/perl-lwp-protocol-https/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/user/perl-lwp-protocol-https/APKBUILD b/user/perl-lwp-protocol-https/APKBUILD index ccd4d42fc..840e93e64 100644 --- a/user/perl-lwp-protocol-https/APKBUILD +++ b/user/perl-lwp-protocol-https/APKBUILD @@ -1,7 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-lwp-protocol-https -_pkgname=LWP-Protocol-https +_pkgreal=LWP-Protocol-https +_author=OALDERS +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=6.07 pkgrel=0 pkgdesc="HTTPS support for Perl LWP" @@ -12,22 +15,19 @@ depends="perl-io-socket-ssl perl-libwww perl-mozilla-ca perl-net-http" checkdepends="perl-test-requiresinternet" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/LWP-Protocol-https-$pkgver.tar.gz" -builddir="$srcdir/LWP-Protocol-https-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" build() { - cd "$builddir" PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make } check() { - cd "$builddir" make test } package() { - cd "$builddir" make DESTDIR="$pkgdir" install find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } |