mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-04 12:18:08 -07:00
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
43 lines
903 B
Bash
43 lines
903 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="Library to help create and query binary XML blobs"
|
|
HOMEPAGE="https://github.com/hughsie/libxmlb"
|
|
SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
IUSE="doc introspection stemmer test"
|
|
|
|
RDEPEND="
|
|
dev-libs/glib:2
|
|
sys-apps/util-linux
|
|
stemmer? ( dev-libs/snowball-stemmer )
|
|
"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
doc? ( dev-util/gtk-doc )
|
|
introspection? ( dev-libs/gobject-introspection )
|
|
"
|
|
|
|
BDEPEND="
|
|
>=dev-util/meson-0.47.0
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dgtkdoc="$(usex doc true false)"
|
|
-Dintrospection="$(usex introspection true false)"
|
|
-Dstemmer="$(usex stemmer true false)"
|
|
-Dtests="$(usex test true false)"
|
|
)
|
|
meson_src_configure
|
|
}
|