gdbm: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Francois Perrad 2012-10-19 03:13:49 +00:00 committed by Peter Korsgaard
parent df9a5973e9
commit e0cf9e86b9
3 changed files with 21 additions and 0 deletions

View File

@ -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"

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

@ -0,0 +1,8 @@
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

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

@ -0,0 +1,12 @@
#############################################################
#
# 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))