mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
package/sqlitecpp: new package
SQLiteC++ (SQLiteCpp) is a lean and easy to use C++ SQLite3 wrapper. http://srombauts.github.io/SQLiteCpp/ Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
1e24c913a1
commit
e74059b39c
@@ -2283,6 +2283,7 @@ F: package/networkd-dispatcher/
|
||||
F: package/protobuf/
|
||||
F: package/re2/
|
||||
F: package/spdlog/
|
||||
F: package/sqlitecpp/
|
||||
|
||||
N: Michael Trimarchi <michael@amarulasolutions.com>
|
||||
F: board/bsh/
|
||||
|
||||
@@ -1613,6 +1613,7 @@ endif
|
||||
source "package/rocksdb/Config.in"
|
||||
source "package/sqlcipher/Config.in"
|
||||
source "package/sqlite/Config.in"
|
||||
source "package/sqlitecpp/Config.in"
|
||||
source "package/timescaledb/Config.in"
|
||||
source "package/unixodbc/Config.in"
|
||||
endmenu
|
||||
|
||||
13
package/sqlitecpp/Config.in
Normal file
13
package/sqlitecpp/Config.in
Normal file
@@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_SQLITECPP
|
||||
bool "sqlitecpp"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
select BR2_PACKAGE_SQLITE
|
||||
select BR2_PACKAGE_SQLITE_ENABLE_COLUMN_METADATA
|
||||
help
|
||||
SQLiteC++ (SQLiteCpp) is a lean and easy to use
|
||||
C++ SQLite3 wrapper.
|
||||
|
||||
https://github.com/SRombauts/SQLiteCpp
|
||||
|
||||
comment "sqlitecpp needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
3
package/sqlitecpp/sqlitecpp.hash
Normal file
3
package/sqlitecpp/sqlitecpp.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 71f990f9fb4b004533b6859ce40729af823b87fe691dd99ca084a7fd40db54b9 sqlitecpp-3.3.1.tar.gz
|
||||
sha256 635de1440f6064c6ca9ca325c163d4d0771e783c6d77783d9470eaf56e346c67 LICENSE.txt
|
||||
19
package/sqlitecpp/sqlitecpp.mk
Normal file
19
package/sqlitecpp/sqlitecpp.mk
Normal file
@@ -0,0 +1,19 @@
|
||||
################################################################################
|
||||
#
|
||||
# SQLiteC++
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SQLITECPP_VERSION = 3.3.1
|
||||
SQLITECPP_SITE = $(call github,SRombauts,SQLiteCpp,$(SQLITECPP_VERSION))
|
||||
SQLITECPP_LICENSE = MIT
|
||||
SQLITECPP_LICENSE_FILES = LICENSE.txt
|
||||
SQLITECPP_DEPENDENCIES = sqlite
|
||||
SQLITECPP_INSTALL_STAGING = YES
|
||||
|
||||
SQLITECPP_CONF_OPTS = \
|
||||
-DSQLITECPP_INTERNAL_SQLITE=OFF \
|
||||
-DSQLITECPP_RUN_CPPLINT=OFF \
|
||||
-DSQLITECPP_RUN_CPPCHECK=OFF
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user