package/libodb: new package

This package contains the common ODB runtime library. Every application
that includes code generated by the ODB compiler will need to link to this
library.

Signed-off-by: Adam Duskett <aduskett@gmail.com>
[Kamel:
- Fix incorrect license
- Remove unneeded dependency on host-odb]
Signed-off-by: Kamel Bouhara <kamel.bouhara@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adam Duskett 2020-07-06 17:30:37 +02:00 committed by Thomas Petazzoni
parent b2266009be
commit 47b64f738d
5 changed files with 36 additions and 0 deletions

View File

@ -45,6 +45,7 @@ F: package/janus-gateway/
F: package/json-for-modern-cpp/
F: package/libcpprestsdk/
F: package/libcutl/
F: package/libodb/
F: package/libressl/
F: package/libselinux/
F: package/libsemanage/

View File

@ -1350,6 +1350,7 @@ menu "Database"
source "package/kompexsqlite/Config.in"
source "package/leveldb/Config.in"
source "package/libgit2/Config.in"
source "package/libodb/Config.in"
source "package/libpqxx/Config.in"
source "package/mongodb/Config.in"
source "package/mysql/Config.in"

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

@ -0,0 +1,13 @@
config BR2_PACKAGE_LIBODB
bool "libodb"
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_INSTALL_LIBSTDCPP
help
This package contains the common ODB runtime library. Every
application that includes code generated by the ODB compiler
will need to link to this library.
https://www.codesynthesis.com/products/odb/
comment "libodb needs a toolchain w/ C++, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,6 @@
# From https://www.codesynthesis.com/projects/libcutl/
sha1 42bd2a8023e338e004711e755eb30bd122b844a6 libodb-2.4.0.tar.bz2
# Locally Computed
sha256 66a1bb4e8bb6ef60cc79334f8028c4d4de98d87f2ff6f8123b4cfb7751ce0007 libodb-2.4.0.tar.bz2
sha256 841105a470fc283851c63941510ffd403c726d1910b688f7df95914ab8b1b5a3 LICENSE

15
package/libodb/libodb.mk Normal file
View File

@ -0,0 +1,15 @@
################################################################################
#
# libodb
#
################################################################################
LIBODB_VERSION_MAJOR = 2.4
LIBODB_VERSION = $(LIBODB_VERSION_MAJOR).0
LIBODB_SOURCE = libodb-$(LIBODB_VERSION).tar.bz2
LIBODB_SITE = https://www.codesynthesis.com/download/odb/$(LIBODB_VERSION_MAJOR)
LIBODB_INSTALL_STAGING = YES
LIBODB_LICENSE = GPL-2.0
LIBODB_LICENSE_FILES = LICENSE
$(eval $(autotools-package))