gentoo-ebuilds/dev-db/wxsqlite3/wxsqlite3-4.10.6-r1.ebuild
David Seifert f244608650
dev-db/wxsqlite3: slot op on x11-libs/wxGTK
Signed-off-by: David Seifert <soap@gentoo.org>
2025-05-17 16:56:53 +02:00

38 lines
743 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WX_GTK_VER="3.2-gtk3"
inherit autotools wxwidgets
DESCRIPTION="C++ wrapper around the public domain SQLite 3.x database"
HOMEPAGE="http://wxcode.sourceforge.net/components/wxsqlite3/"
SRC_URI="https://github.com/utelle/wxsqlite3/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="wxWinLL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
x11-libs/wxGTK:${WX_GTK_VER}=[X]
dev-db/sqlite:3="
DEPEND="${RDEPEND}"
src_prepare() {
default
eautoreconf
}
src_configure() {
setup-wxwidgets
econf --with-wx-config="${WX_CONFIG}"
}
src_install() {
default
dodoc readme.md
find "${ED}" -type f -name '*.la' -delete || die
}