summaryrefslogtreecommitdiff
path: root/dev-util/gemini-cli/gemini-cli-0.44.1.ebuild
blob: ffdf827492f36a6289c08b7651a0ec24cb2a9647 (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
25
26
27
28
29
30
31
32
33
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

MY_PV="${PV/_pre/-preview}"
MY_PV="${MY_PV/preview[0-9]*/preview.${MY_PV##*preview}}"

inherit wrapper

DESCRIPTION="Gemini CLI - a command-line AI workflow tool by Google"
HOMEPAGE="https://github.com/google-gemini/gemini-cli"
SRC_URI="https://github.com/google-gemini/gemini-cli/releases/download/v${MY_PV}/gemini-cli-bundle.zip -> ${P}.zip"
S="${WORKDIR}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"

BDEPEND="app-arch/unzip"
RDEPEND="
	net-libs/nodejs
"

src_install() {
	insinto /usr/lib/${PN}
	doins -r .

	fperms +x /usr/lib/${PN}/gemini.js
	# Use a wrapper instead of a symlink so that Node.js ESM relative
	# imports resolve from the real install path, not the /usr/bin symlink.
	make_wrapper gemini "node /usr/lib/${PN}/gemini.js"
}