diff options
Diffstat (limited to 'user/perl-test-sharedfork/APKBUILD')
-rw-r--r-- | user/perl-test-sharedfork/APKBUILD | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/user/perl-test-sharedfork/APKBUILD b/user/perl-test-sharedfork/APKBUILD index aaa8a998b..a866b24a9 100644 --- a/user/perl-test-sharedfork/APKBUILD +++ b/user/perl-test-sharedfork/APKBUILD @@ -1,33 +1,33 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-sharedfork -_pkgname=Test-SharedFork +_pkgreal=Test-SharedFork +_author=EXODIST +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.35 pkgrel=0 pkgdesc="Fork during Perl tests" url="https://metacpan.org/release/Test-SharedFork" arch="noarch" license="Artistic-1.0-Perl OR GPL-2.0-only" -depends="" +depends="perl" checkdepends="perl-test-requires" -makedepends="perl-dev" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-SharedFork-$pkgver.tar.gz" -builddir="$srcdir/Test-SharedFork-$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 } |