diff options
Diffstat (limited to 'user/perl-test-output/APKBUILD')
-rw-r--r-- | user/perl-test-output/APKBUILD | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/user/perl-test-output/APKBUILD b/user/perl-test-output/APKBUILD index 8454737f3..241c8b29c 100644 --- a/user/perl-test-output/APKBUILD +++ b/user/perl-test-output/APKBUILD @@ -3,40 +3,32 @@ # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-test-output _pkgreal=Test-Output +_author=BDFOY +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.031 pkgrel=0 pkgdesc="Utilities to test STDOUT and STDERR messages" url="https://metacpan.org/release/Test-Output" arch="noarch" license="Artistic-2.0" -cpandepends="perl-capture-tiny perl-sub-exporter perl-test-simple" -cpanmakedepends="" -depends="$cpandepends" -makedepends="perl-dev $cpanmakedepends" +depends="perl-capture-tiny perl-sub-exporter perl-test-simple" +makedepends="" checkdepends="perl-test-pod" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/B/BD/BDFOY/$_pkgreal-$pkgver.tar.gz" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" builddir="$srcdir/$_pkgreal-$pkgver" -prepare() { - cd "$builddir" - export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor -} - build() { - cd "$builddir" - export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` + 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 } |