Commit ddfd700a authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

kompexsqlite: new package

parent d54751e2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -768,6 +768,7 @@ menu "Database"
	source "package/berkeleydb/Config.in"
	source "package/cppdb/Config.in"
	source "package/gdbm/Config.in"
	source "package/kompexsqlite/Config.in"
	source "package/leveldb/Config.in"
	source "package/mysql/Config.in"
	source "package/postgresql/Config.in"
+27 −0
Original line number Diff line number Diff line
From 769693d9ddf63b04dd4aad6cad080f3cee3f997e Mon Sep 17 00:00:00 2001
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
Date: Thu, 11 Jun 2015 14:08:38 -0300
Subject: [PATCH] Makefile: use autoconf CXX for proper builds

Status: applied upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 Makefile.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile.in b/Makefile.in
index 91fb8b2..fe862cd 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -23,6 +23,7 @@ mandir = $(prefix)/share/man/man3
 headerdir = $(prefix)/include/kompex
 
 CC = @CC@
+CXX = @CXX@
 CFLAGS = @CFLAGS@
 CPPFLAGS = $(CFLAGS) @CPPFLAGS@
 LDFLAGS = @LDFLAGS@
-- 
2.3.6
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_KOMPEXSQLITE
	bool "kompexsqlite"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on !BR2_STATIC_LIBS
	help
	  The Kompex SQLite Wrapper is an open source C++ wrapper
	  library for SQLite.

	  http://sqlitewrapper.kompex-online.com/index.php

comment "kompexsqlite needs a toolchain w/ C++, dynamic library"
	depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
+2 −0
Original line number Diff line number Diff line
# Locally calculated
sha256	73bec94fe5dd3a24bd8668b3a131a84dbe39a992579eebab1236aa0e73b2c9cc	v1.10.12-1.tar.gz
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# kompexsqlite
#
################################################################################

KOMPEXSQLITE_VERSION = v1.10.12-1
KOMPEXSQLITE_SOURCE = $(KOMPEXSQLITE_VERSION).tar.gz
KOMPEXSQLITE_SITE = https://github.com/Aethelflaed/kompex-sqlite-wrapper/archive
KOMPEXSQLITE_INSTALL_STAGING = YES
KOMPEXSQLITE_LICENSE = LGPLv3+ (wrapper), Public Domain (bundled sqlite)
KOMPEXSQLITE_LICENSE_FILES = LICENSE.txt

$(eval $(autotools-package))