# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=9 DESCRIPTION="Reference implementation of the Development Containers specification" HOMEPAGE="https://containers.dev/ https://github.com/devcontainers/cli/ https://registry.npmjs.org/@devcontainers/cli/" SRC_URI="https://registry.npmjs.org/@devcontainers/cli/-/cli-${PV}.tgz -> ${P}.npm.tgz" S="${WORKDIR}/package" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=" net-libs/nodejs " BDEPEND=" net-libs/nodejs[npm] " DOCS=( CHANGELOG.md README.md ) src_compile() { # Skip, nothing to compile here. : } src_install() { local -a my_npm_opts=( --prefix="${ED}/usr" --omit="dev" --audit="false" --color="false" --progress="false" --foreground-scripts --global --offline --verbose ) npm "${my_npm_opts[@]}" install "${DISTDIR}/${P}.npm.tgz" || die "npm install failed" einstalldocs }