guru/dev-util/typescript-language-server/typescript-language-server-4.3.3.ebuild
tastytea 85de38e817
dev-util/typescript-language-server: add 4.3.3
Signed-off-by: tastytea <gentoo@tastytea.de>
2024-02-10 18:36:16 +01:00

41 lines
817 B
Bash

# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="TypeScript & JavaScript Language Server"
HOMEPAGE="https://www.npmjs.com/package/typescript-language-server"
SRC_URI="mirror://npm/${PN}/-/${P}.tgz"
S="${WORKDIR}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=net-libs/nodejs-18.19.15
"
BDEPEND="
>=net-libs/nodejs-18.19.15[npm]
>=dev-lang/typescript-5.3.3
"
src_unpack() {
: # npm uses the archive directly
}
src_install() {
npm \
--offline \
--verbose \
--progress false \
--foreground-scripts \
--global \
--prefix "${ED}"/usr \
--cache "${T}"/npm-cache \
install "${DISTDIR}"/${P}.tgz || die "npm install failed"
cd "${ED}"/usr/$(get_libdir)/node_modules/${PN} || die "cd failed"
einstalldocs
}