This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

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

@@ -0,0 +1,7 @@
config BR2_PACKAGE_GDBM
bool "gdbm"
help
GNU dbm is a set of database routines that use extensible
hashing. It works similar to the standard UNIX dbm routines.
http://www.gnu.org/software/gdbm/gdbm.html

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

@@ -0,0 +1,6 @@
# From https://lists.gnu.org/archive/html/info-gnu/2018-10/msg00006.html
md5 988dc82182121c7570e0cb8b4fcd5415 gdbm-1.18.1.tar.gz
sha1 4a923ebfac06bb05c1c7699b206719e06a938f0d gdbm-1.18.1.tar.gz
# Locally computed
sha256 86e613527e5dba544e73208f42b78b7c022d4fa5a6d5498bf18c8d6f745b91dc gdbm-1.18.1.tar.gz
sha256 690d762f2e8e149ab1e2d6a409a3853b6151a2533b2382fae549a176d6bedecf COPYING

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

@@ -0,0 +1,21 @@
################################################################################
#
# gdbm
#
################################################################################
GDBM_VERSION = 1.18.1
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))