added dev-util/typos-lsp

This commit is contained in:
Micha Glave
2024-09-16 11:00:17 +02:00
parent 8e0e9162ba
commit c1ff349541
4 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST typos-lsp-v0.1.23-x86_64-unknown-linux-gnu.tar.gz 5503103 BLAKE2B e02d9536618734497fe4883443e820c83de3a36ed23938cf728810583fc433b64eee8a1b9c5e39a9a06e44baa08f861f9bd5eb6efd1d8b9b3f9c8a882fe078b1 SHA512 fb4b4a1cc7a3c0a1f439e67e1cf1ecffd97cc310cc65931e5c8ac2400e5e1d5118919e3e62a09b8e5ac84706ed3e246c408302a6c2bf0dc46d52662859951bc9

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Source code spell checker for Visual Studio Code and LSP clients"
HOMEPAGE="https://github.com/tekumara/typos-lsp"
SRC_URI="
amd64? ( https://github.com/tekumara/${PN}/releases/download/v${PV}/${PN}-v${PV}-x86_64-unknown-linux-gnu.tar.gz )
"
RESTRICT="mirror strip bindist"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-util/typos
"
RDEPEND="
${DEPEND}
"
DOCS=( )
pkg_setup(){
S="${WORKDIR}"
}
src_install(){
dobin typos-lsp
}