blob: 4c15a889488d9818206eb0538739d2d963fcc822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper. "
HOMEPAGE="http://srombauts.github.io/SQLiteCpp"
SRC_URI="https://github.com/SRombauts/SQLiteCpp/archive/refs/tags/3.3.3.tar.gz"
S="${WORKDIR}/SQLiteCpp-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-db/sqlite"
DEPEND="${RDEPEND}"
BDEPEND="dev-db/sqlite"
|