mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-19 07:48:56 -04:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit unpacker
|
|
|
|
DESCRIPTION="A cross-platform version manager, extendable via plugins"
|
|
HOMEPAGE="https://vfox.lhan.me/ 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"
|
|
|
|
src_install() {
|
|
default
|
|
|
|
dobin usr/bin/vfox
|
|
|
|
insinto /usr/share/bash-completion/completions
|
|
doins usr/share/bash-completion/completions/vfox
|
|
|
|
insinto /usr/share/zsh/site-functions
|
|
doins usr/share/zsh/site-functions/_vfox
|
|
}
|