diff options
Diffstat (limited to 'user/perl-task-test-run-allplugins/APKBUILD')
-rw-r--r-- | user/perl-task-test-run-allplugins/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-task-test-run-allplugins/APKBUILD b/user/perl-task-test-run-allplugins/APKBUILD index 353fae3b0..34a6dfa3a 100644 --- a/user/perl-task-test-run-allplugins/APKBUILD +++ b/user/perl-task-test-run-allplugins/APKBUILD @@ -1,6 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-task-test-run-allplugins +_pkgreal=Task-Test-Run-AllPlugins +_author=SHLOMIF +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.0105 pkgrel=0 pkgdesc="Install all the Test::Run plugins" @@ -13,24 +17,21 @@ depends="perl-test-run perl-test-run-cmdline perl-test-run-plugin-colourfileverdicts perl-test-run-plugin-coloursummary perl-test-run-plugin-trimdisplayedfilenames" -makedepends="perl-dev" +makedepends="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Task-Test-Run-AllPlugins-$pkgver.tar.gz" -builddir="$srcdir/Task-Test-Run-AllPlugins-$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 } |