41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Rémy Oudompheng <remy@archlinux.org>
|
|
# Contributor: John D Jones III <jnbek1972 -_AT_- g m a i l -_Dot_- com>
|
|
# Generator : CPANPLUS::Dist::Arch 1.27
|
|
|
|
pkgname='perl-ipc-run3'
|
|
_dist=IPC-Run3
|
|
pkgver=0.049
|
|
pkgrel=2
|
|
pkgdesc="run a subprocess with input/ouput redirection"
|
|
arch=(any)
|
|
license=('PerlArtistic' 'GPL')
|
|
options=('!emptydirs')
|
|
depends=('perl')
|
|
makedepends=()
|
|
url='https://search.cpan.org/dist/IPC-Run3'
|
|
source=("https://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_dist}-${pkgver}.tar.gz")
|
|
md5sums=('569393ca56dfb78dedd79e93c0439159')
|
|
sha512sums=('19dbf902666ccb56bfdb02c0c4e9ef585d773e1b8b53d4627367a3c0344d08a6358a733786b8de97e615b6916b716c4e66e73ae263986a2cacf50ab155539c55')
|
|
|
|
build() {
|
|
cd "${srcdir}/${_dist}-${pkgver}"
|
|
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
|
|
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
|
|
perl Makefile.PL
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/${_dist}-${pkgver}"
|
|
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
|
|
export PERL_MM_USE_DEFAULT=1
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${_dist}-${pkgver}"
|
|
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
|
|
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
|
|
}
|