[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

13
package/gdbm/Config.in Normal file
View File

@ -0,0 +1,13 @@
config BR2_PACKAGE_GDBM
bool "gdbm"
depends on BR2_USE_MMU # fork()
depends on BR2_USE_WCHAR
help
GNU dbm is a set of database routines that use extensible
hashing. It works similar to the standard UNIX dbm routines.
https://www.gnu.org/software/gdbm/gdbm.html
comment "gdbm needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR

6
package/gdbm/gdbm.hash Normal file
View File

@ -0,0 +1,6 @@
# From https://www.gnu.org.ua/software/gdbm/download.html
md5 8551961e36bf8c70b7500d255d3658ec gdbm-1.23.tar.gz
sha1 50ba1b1d45ce33fd44e4fdaaf3b55a9d8f3dc418 gdbm-1.23.tar.gz
# Locally computed
sha256 74b1081d21fff13ae4bd7c16e5d6e504a4c26f7cde1dca0d963a484174bbcacd gdbm-1.23.tar.gz
sha256 690d762f2e8e149ab1e2d6a409a3853b6151a2533b2382fae549a176d6bedecf COPYING

21
package/gdbm/gdbm.mk Normal file
View File

@ -0,0 +1,21 @@
################################################################################
#
# gdbm
#
################################################################################
GDBM_VERSION = 1.23
GDBM_SITE = $(BR2_GNU_MIRROR)/gdbm
GDBM_LICENSE = GPL-3.0+
GDBM_LICENSE_FILES = COPYING
GDBM_INSTALL_STAGING = YES
GDBM_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
ifeq ($(BR2_PACKAGE_READLINE),y)
GDBM_CONF_OPTS += --with-readline
GDBM_DEPENDENCIES += readline
else
GDBM_CONF_OPTS += --without-readline
endif
$(eval $(autotools-package))