guru/dev-util/vala-language-server/vala-language-server-0.48.4.ebuild
Yuan Liao 8f36f44ffe
dev-util/vala-language-server: Unkeyword 0.48.4 for ~x86
Dependency dev-util/gnome-builder was unkeyworded on x86.

Signed-off-by: Yuan Liao <liaoyuan@gmail.com>
2022-11-18 09:26:18 -08:00

36 lines
746 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Code Intelligence for Vala & Genie"
HOMEPAGE="https://github.com/vala-lang/vala-language-server"
SRC_URI="https://github.com/vala-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug_mem plugins test"
RESTRICT="!test? ( test )"
DEPEND="dev-lang/vala
dev-util/gnome-builder
dev-libs/jsonrpc-glib[vala]
dev-libs/gobject-introspection
dev-libs/json-glib
dev-libs/libgee
dev-libs/glib"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
local emesonargs=(
$(meson_use debug_mem)
$(meson_use plugins)
$(meson_use test tests)
)
meson_src_configure
}