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

View File

@@ -0,0 +1,31 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-math-random-isaac
pkgver=1.004
pkgrel=1
pkgdesc='Perl interface to the ISAAC PRNG algorithm'
arch=('any')
url='https://search.cpan.org/dist/Math-Random-ISAAC/'
license=('Public-Domain')
depends=('perl')
makedepends=('perl-test-nowarnings')
options=(!emptydirs)
source=("https://search.cpan.org/CPAN/authors/id/J/JA/JAWNSY/Math-Random-ISAAC-$pkgver.tar.gz")
sha512sums=('98fdfb28b207b4afe72ab82a2b564b06c5daaac15cdab2ce2ef698b16c0dcf5b23ac28fbebe170d2c6c7239fe6c97f634e5c03a8f2bd0aeb8369d0008b9ae0a2')
build() {
cd "$srcdir/Math-Random-ISAAC-$pkgver"
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='"$pkgdir"'" \
PERL_MB_OPT="--installdirs vendor --destdir '"$pkgdir"'" \
MODULEBUILDRC=/dev/null
perl Makefile.PL
make
}
package() {
cd "$srcdir/Math-Random-ISAAC-$pkgver"
make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}