diff options
Diffstat (limited to 'user/perl-test-run-plugin-cfv/APKBUILD')
-rw-r--r-- | user/perl-test-run-plugin-cfv/APKBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/user/perl-test-run-plugin-cfv/APKBUILD b/user/perl-test-run-plugin-cfv/APKBUILD index 3fa80c7d2..a6b38f143 100644 --- a/user/perl-test-run-plugin-cfv/APKBUILD +++ b/user/perl-test-run-plugin-cfv/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-colourfileverdicts +_pkgreal=Test-Run-Plugin-ColorFileVerdicts +_author=SHLOMIF +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.0124 pkgrel=0 pkgdesc="Make Perl Test::Run file verdicts (ok, not ok) colourful" @@ -8,25 +12,22 @@ url="https://metacpan.org/release/Test-Run-Plugin-ColorFileVerdicts" arch="noarch" license="MIT" depends="perl-moose perl-mro-compat perl-test-run perl-test-run-cmdline" -makedepends="perl-dev" +makedepends="" subpackages="$pkgname-doc" provides="perl-test-run-plugin-colorfileverdicts=$pkgver-r$pkgrel" -source="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Test-Run-Plugin-ColorFileVerdicts-$pkgver.tar.gz" -builddir="$srcdir/Test-Run-Plugin-ColorFileVerdicts-$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 } |