blob: ae00ff4e5591ad5ff0d356d755cdf6534dc35d12 [file] [log] [blame]
Patrick Williamsddad1a12017-02-23 20:36:32 -06001#
2# Copyright (C) 2012 - 2016 Wind River Systems, Inc.
3#
4SUMMARY = "A modern implementation of DBM"
5
6DESCRIPTION = "Tokyo Cabinet is a library of routines for managing a database. \
7The database is a simple data file containing records, each is a pair of a key \
8and a value. Every key and value is serial bytes with variable length. \
9Both binary data and character string can be used as a key and a value. \
10There is neither concept of data tables nor data types. \
11Records are organized in hash table, B+ tree, or fixed-length array."
12
13HOMEPAGE = "http://fallabs.com/tokyocabinet/"
14
Andrew Geissler9aee5002022-03-30 16:27:02 +000015LICENSE = "GPL-2.0-only"
Patrick Williamsddad1a12017-02-23 20:36:32 -060016LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
17
18SRC_URI = "http://fallabs.com/tokyocabinet/${BP}.tar.gz \
19 file://remove-hard-coded-include-and-lib-paths.patch \
Andrew Geissler87f5cff2022-09-30 13:13:31 -050020 file://0001-configure-Fix-check-functions-for-AC_CHECK_LIB-test.patch \
Patrick Williamsddad1a12017-02-23 20:36:32 -060021"
22
23SRC_URI[md5sum] = "fd03df6965f8f56dd5b8518ca43b4f5e"
24SRC_URI[sha256sum] = "a003f47c39a91e22d76bc4fe68b9b3de0f38851b160bbb1ca07a4f6441de1f90"
25
26DEPENDS = "bzip2 zlib"
27
28inherit autotools-brokensep