diff options
Diffstat (limited to 'user/perl-test-file-sharedir')
-rw-r--r-- | user/perl-test-file-sharedir/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/user/perl-test-file-sharedir/APKBUILD b/user/perl-test-file-sharedir/APKBUILD index 24ecbc048..e52199be9 100644 --- a/user/perl-test-file-sharedir/APKBUILD +++ b/user/perl-test-file-sharedir/APKBUILD @@ -1,7 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-file-sharedir -_pkgname=Test-File-ShareDir +_pkgreal=Test-File-ShareDir +_author=KENTNL +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.001002 pkgrel=0 pkgdesc="Module testing support for Perl" @@ -11,24 +14,21 @@ license="Artistic-1.0-Perl or GPL-2.0-only" depends="perl-class-tiny perl-file-copy-recursive perl-file-sharedir perl-path-tiny perl-scope-guard" checkdepends="perl-test-fatal" -makedepends="perl-dev" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/K/KE/KENTNL/Test-File-ShareDir-$pkgver.tar.gz" -builddir="$srcdir/Test-File-ShareDir-$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 } |