blob: 1da97ddec1730a20caa470231fb31eae7afb1187 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Language server implementation for GLSL"
HOMEPAGE="https://github.com/billyb2/glsl-language-server-gentoo"
SRC_URI="https://github.com/billyb2/${PN}-gentoo/archive/refs/tags/${PV}-g.tar.gz"
S="${WORKDIR}"/${PN}-gentoo-${PV}-g
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-util/glslang dev-cpp/cli11 dev-cpp/nlohmann_json dev-libs/libfmt"
RDEPEND="${DEPEND}"
BDEPEND="dev-util/ninja"
src_install() {
DESTDIR="${D}" ninja -C"${S}/build" install
}
|