generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
13
package/libodb/Config.in
Normal file
13
package/libodb/Config.in
Normal 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
|
||||
6
package/libodb/libodb.hash
Normal file
6
package/libodb/libodb.hash
Normal 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
|
||||
18
package/libodb/libodb.mk
Normal file
18
package/libodb/libodb.mk
Normal file
@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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
|
||||
LIBODB_CONF_ENV = CXXFLAGS="$(TARGET_CXXFLAGS) -std=c++11"
|
||||
HOST_LIBODB_CONF_ENV = CXXFLAGS="$(HOST_CXXFLAGS) -std=c++11"
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user