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,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-crypt-libressl-random
pkgver=0.15
pkgrel=1
pkgdesc='Routines for accessing the LibreSSL pseudo-random number generator'
arch=('i686' 'x86_64')
license=('GPL-1')
options=(!emptydirs)
makedepends=('perl-crypt-libressl-guess')
depends=('perl' 'libressl')
url=https://metacpan.org/release/Crypt-OpenSSL-Random
source=("https://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/Crypt-OpenSSL-Random-$pkgver.tar.gz")
sha512sums=(bba8ce86b97ce2d6271be503efff6e6e0ff60a797282a2b7cb9c6c0592b69cc43344f9738b4790e5fc165a7273ff01e35ada481cf8c4dfde38cb7ad741d97530)
_ddir="Crypt-OpenSSL-Random-$pkgver"
build() {
cd "$srcdir/$_ddir"
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
unset PERL5LIB PERL_MM_OPT
/usr/bin/perl Makefile.PL
make
}
package() {
cd "$srcdir/$_ddir"
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
}