initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

30
perl-ipc-run3/PKGBUILD Normal file
View File

@@ -0,0 +1,30 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
# Generator (Arch): CPANPLUS::Dist::Arch 1.27
pkgname='perl-ipc-run3'
_dist=IPC-Run3
pkgver=0.048
pkgrel=1
pkgdesc="run a subprocess with input/ouput redirection"
arch=('any')
license=('GPL-1')
options=('!emptydirs')
depends=('perl')
url='https://search.cpan.org/dist/IPC-Run3'
source=("https://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_dist}-${pkgver}.tar.gz")
sha512sums=('50432850d8dccd2e59aa6684d34f3e3242fd7df3eb4d9a5eb02dae389aa46b5fd68cc54114a157c3fe99956e68e74d575ab3db5009b7bf7d5c325f1f109b1262')
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
}
package() {
cd "${srcdir}/${_dist}-${pkgver}"
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
}