aboutsummaryrefslogtreecommitdiff
blob: 4e4f0e6975ffb22f3efa07904e78d0bf9061102a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="An implementation of Language Server Protocol for the Rust programming language"
HOMEPAGE="https://rust-analyzer.github.io"
SRC_URI="https://github.com/rust-analyzer/rust-analyzer/releases/download/2021-08-09/rust-analyzer-x86_64-unknown-linux-gnu.gz -> ${P}.gz"

LICENSE="Apache-2.0 MIT-with-advertising"
SLOT="0"
KEYWORDS="~amd64"

S=${WORKDIR}

QA_FLAGS_IGNORED="usr/bin/rust-analyzer"

src_install() {
	newbin ${P} rust-analyzer
}

pkg_postinst() {
	elog "Make sure to add your desired rust toolchain (e.g. with rustup) for rust-analyzer to work correctly"
}