dev-util/vala-language-server: new package, add 0.48.4

Signed-off-by: Tony Olagbaiye <bqv@fron.io>
This commit is contained in:
Tony Olagbaiye
2022-06-01 01:57:27 +01:00
parent 9fb602a404
commit 7d88c34a1a
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# 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 ~x86"
IUSE="debug_mem plugins 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
}