Commit e0cf9e86 authored by Francois Perrad's avatar Francois Perrad Committed by Peter Korsgaard
Browse files

gdbm: new package

parent df9a5973
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -345,6 +345,7 @@ endmenu

menu "Database"
source "package/berkeleydb/Config.in"
source "package/gdbm/Config.in"
source "package/mysql_client/Config.in"
source "package/sqlcipher/Config.in"
source "package/sqlite/Config.in"

package/gdbm/Config.in

0 → 100644
+8 −0
Original line number Diff line number Diff line
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

package/gdbm/gdbm.mk

0 → 100644
+12 −0
Original line number Diff line number Diff line
#############################################################
#
# gdbm
#
#############################################################
GDBM_VERSION = 1.10
GDBM_SITE = $(BR2_GNU_MIRROR)/gdbm
GDBM_LICENSE = GPLv3
GDBM_LICENSE_FILES = COPYING
GDBM_INSTALL_STAGING = YES

$(eval $(autotools-package))