Commit 1284bad1 authored by Bernd Kuhls's avatar Bernd Kuhls Committed by Thomas Petazzoni
Browse files

package/perl-db-file: new package



[Thomas: rename package to perl-db-file.]

Signed-off-by: default avatarBernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 17d2c6d5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -505,6 +505,7 @@ menu "Perl libraries/modules"
	source "package/perl-crypt-openssl-random/Config.in"
	source "package/perl-crypt-openssl-rsa/Config.in"
	source "package/perl-datetime-tiny/Config.in"
	source "package/perl-db-file/Config.in"
	source "package/perl-digest-hmac/Config.in"
	source "package/perl-digest-sha1/Config.in"
	source "package/perl-encode-locale/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PERL_DB_FILE
	bool "perl-db-file"
	depends on !BR2_STATIC_LIBS
	select BR2_PACKAGE_BERKELEYDB
	select BR2_PACKAGE_BERKELEYDB_COMPAT185
	help
	  Perl5 access to Berkeley DB version 1.x

	  https://metacpan.org/release/DB_File

comment "perl-db_file needs a toolchain w/ dynamic library"
	depends on BR2_STATIC_LIBS
+3 −0
Original line number Diff line number Diff line
# retrieved by scancpan from http://cpan.metacpan.org/
md5    0ae7910cabc31a44e50b713a8a475514 DB_File-1.835.tar.gz
sha256 41206f39a1bac49db8c1595e300b04c70e1393b2d78ccb9ef15c5c0b81037cfc DB_File-1.835.tar.gz
+13 −0
Original line number Diff line number Diff line
################################################################################
#
# perl-db_file
#
################################################################################

PERL_DB_FILE_VERSION = 1.835
PERL_DB_FILE_SOURCE = DB_File-$(PERL_DB_FILE_VERSION).tar.gz
PERL_DB_FILE_SITE = $(BR2_CPAN_MIRROR)/authors/id/P/PM/PMQS
PERL_DB_FILE_DEPENDENCIES = berkeleydb perl
PERL_DB_FILE_LICENSE = Artistic or GPLv1+

$(eval $(perl-package))