diff options
-rw-r--r-- | perl-ipc-run3/PKGBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-ipc-run3/PKGBUILD b/perl-ipc-run3/PKGBUILD index 405ba82d..cc898836 100644 --- a/perl-ipc-run3/PKGBUILD +++ b/perl-ipc-run3/PKGBUILD @@ -2,7 +2,7 @@ pkgname='perl-ipc-run3' pkgver='0.048' -pkgrel='4' +pkgrel='5' pkgdesc='run a subprocess with input/ouput redirection' arch=('any') license=('PerlArtistic' 'GPL') @@ -12,7 +12,9 @@ depends=( 'perl-time-hires') makedepends=( 'perl-extutils-makemaker') -checkdepends=() +checkdepends=( + 'perl-test-pod' + 'perl-test-pod-coverage') url='https://metacpan.org/release/IPC-Run3' _distdir="IPC-Run3-${pkgver}" source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/${_distdir}.tar.gz") @@ -34,6 +36,7 @@ build() { check() { cd "$srcdir/$_distdir" ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + export RELEASE_TESTING=1 make test ) } |