mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 08:18:49 -04:00
22 lines
582 B
Bash
22 lines
582 B
Bash
# 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
|
|
}
|