1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2025-12-31 11:02:29 +01:00

Added ebuild for vboxmanage bash completion

This commit is contained in:
2022-10-01 16:47:01 +02:00
parent 04cf4615bb
commit b3bac3a064
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 bash-completion-r1
DESCRIPTION="VBoxManage bash completion"
HOMEPAGE="https://github.com/gryf/vboxmanage-bash-completion"
EGIT_REPO_URI="https://github.com/gryf/vboxmanage-bash-completion"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="app-emulation/virtualbox"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
cd ${S}
mv VBoxManage VBoxManage_completion
newbashcomp VBoxManage_completion VBoxManage
bashcomp_alias VBoxManage vboxmanage
}