[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_PERL_CRYPT_OPENSSL_RSA
bool "perl-crypt-openssl-rsa"
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_PERL_CRYPT_OPENSSL_RANDOM # runtime
select BR2_PACKAGE_LIBOPENSSL_ENABLE_RMD160 if BR2_PACKAGE_LIBOPENSSL
help
RSA encoding and decoding, using the openSSL libraries.
http://github.com/toddr/Crypt-OpenSSL-RSA
comment "perl-crypt-openssl-rsa needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS

View File

@ -0,0 +1,5 @@
# From https://cpan.metacpan.org/authors/id/T/TO/TODDR/CHECKSUMS
sha256 bdbe630f6d6f540325746ad99977272ac8664ff81bd19f0adaba6d6f45efd864 Crypt-OpenSSL-RSA-0.33.tar.gz
# computed by scancpan
sha256 8a693ad3f52daeeb5ac5deceb1e1109c9c87095ed5ba6506d6d5c106e4066f5a LICENSE

View File

@ -0,0 +1,22 @@
################################################################################
#
# perl-crypt-openssl-rsa
#
################################################################################
PERL_CRYPT_OPENSSL_RSA_VERSION = 0.33
PERL_CRYPT_OPENSSL_RSA_SOURCE = Crypt-OpenSSL-RSA-$(PERL_CRYPT_OPENSSL_RSA_VERSION).tar.gz
PERL_CRYPT_OPENSSL_RSA_SITE = $(BR2_CPAN_MIRROR)/authors/id/T/TO/TODDR
PERL_CRYPT_OPENSSL_RSA_DEPENDENCIES = \
host-perl-crypt-openssl-guess \
perl-crypt-openssl-random \
openssl
PERL_CRYPT_OPENSSL_RSA_LICENSE = Artistic or GPL-1.0+
PERL_CRYPT_OPENSSL_RSA_LICENSE_FILES = LICENSE
PERL_CRYPT_OPENSSL_RSA_DISTNAME = Crypt-OpenSSL-RSA
# Try as hard as possible to remedy to the brain-damage their build-system
# suffers from: don't search for openssl, they pick the host-system one.
PERL_CRYPT_OPENSSL_RSA_CONF_ENV = OPENSSL_PREFIX=$(STAGING_DIR)/usr
$(eval $(perl-package))