21 lines
372 B
Bash
21 lines
372 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Installs a /usr/bin/vi symlink pointing to busybox"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 arm arm64"
|
|
|
|
RDEPEND="app-eselect/eselect-vi
|
|
sys-apps/busybox"
|
|
|
|
pkg_postinst() {
|
|
eselect vi update --if-unset
|
|
}
|
|
|
|
pkg_postrm() {
|
|
eselect vi update --if-unset
|
|
}
|