View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit unpacker shell-completion
DESCRIPTION="A cross-platform version manager, extendable via plugins"
HOMEPAGE="https://vfox.dev/ https://github.com/version-fox/vfox"
SRC_URI="
amd64? ( https://github.com/version-fox/vfox/releases/download/v${PV}/vfox_${PV}_linux_x86_64.deb )
x86? ( https://github.com/version-fox/vfox/releases/download/v${PV}/vfox_${PV}_linux_i386.deb )
arm64? ( https://github.com/version-fox/vfox/releases/download/v${PV}/vfox_${PV}_linux_aarch64.deb )
arm? ( https://github.com/version-fox/vfox/releases/download/v${PV}/vfox_${PV}_linux_armv7.deb )
"
S="${WORKDIR}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="app-shells/bash"
RDEPEND+=" !dev-util/vfox"
QA_PREBUILT="/usr/bin/vfox"
src_install() {
default
dobin usr/bin/vfox
dobashcomp usr/share/bash-completion/completions/vfox
dozshcomp usr/share/zsh/site-functions/_vfox
}