diff options
Diffstat (limited to 'user/perl-pod-constants')
-rw-r--r-- | user/perl-pod-constants/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/user/perl-pod-constants/APKBUILD b/user/perl-pod-constants/APKBUILD index bfb2802d7..4715fffbe 100644 --- a/user/perl-pod-constants/APKBUILD +++ b/user/perl-pod-constants/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-pod-constants +_pkgreal=Pod-Constants +_author=MGV +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.19 pkgrel=0 pkgdesc="Perl module for pulling constants from POD text" @@ -9,24 +13,20 @@ arch="noarch" license="Artistic-2.0" depends="perl" makedepends="" -install="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/M/MG/MGV/Pod-Constants-$pkgver.tar.gz" -builddir="$srcdir/Pod-Constants-$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 } |