Files
guru/app-shells/fzf-fish/fzf-fish-10.3.ebuild
Takuya Wakazono ad6734472c app-shells/fzf-fish: add 10.3
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
2024-04-07 17:06:16 +09:00

31 lines
705 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit shell-completion
DESCRIPTION="Augment your fish command line with fzf key bindings"
HOMEPAGE="https://github.com/PatrickF1/fzf.fish"
SRC_URI="https://github.com/PatrickF1/fzf.fish/archive/refs/tags/v${PV}.tar.gz -> fzf-fish-${PV}.tar.gz"
S="${WORKDIR}/${PN/-/.}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=app-shells/fish-3.4.0
>=app-shells/fzf-0.33
>=sys-apps/bat-0.16.0
>=sys-apps/fd-8.5.0
"
src_install() {
dofishcomp completions/*
insinto "/usr/share/fish/vendor_conf.d"
doins conf.d/*
insinto "/usr/share/fish/vendor_functions.d"
doins functions/*
}