diff options
Diffstat (limited to 'user/perl-test-run-plugin-bof')
-rw-r--r-- | user/perl-test-run-plugin-bof/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-test-run-plugin-bof/APKBUILD b/user/perl-test-run-plugin-bof/APKBUILD index e776778b6..b0e224125 100644 --- a/user/perl-test-run-plugin-bof/APKBUILD +++ b/user/perl-test-run-plugin-bof/APKBUILD @@ -1,6 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-run-plugin-breakonfailure +_pkgreal=Test-Run-Plugin-BreakOnFailure +_author=SHLOMIF +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.0.5 pkgrel=0 pkgdesc="Stop processing entire Test::Run suite on single failure" @@ -8,24 +12,21 @@ url="https://metacpan.org/release/Test-Run-Plugin-BreakOnFailure" arch="noarch" license="MIT" depends="perl-moose perl-mro-compat perl-test-run perl-test-run-cmdline" -makedepends="perl-dev" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Test-Run-Plugin-BreakOnFailure-v$pkgver.tar.gz" -builddir="$srcdir/Test-Run-Plugin-BreakOnFailure-v$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-v$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-v$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 } |