Files
guru/app-shells/k/k-0.0.5.ebuild
Alessandro Barbieri 2c09c9b95d app-shells/k: new package
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
2020-02-23 03:57:55 +01:00

30 lines
696 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
DESCRIPTION="Directory listings for zsh with git features"
HOMEPAGE="https://github.com/supercrabtree/k"
SRC_URI="https://github.com/supercrabtree/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="
>=app-shells/zsh-4.3.11
>=dev-vcs/git-1.7.2
"
src_install() {
dodoc "readme.md"
dodir "/usr/share/zsh/plugins"
insinto "/usr/share/zsh/plugins/${PN}"
doins "${PN}.sh"
}
pkg_postinst() {
einfo "To use this script, load it into your interactive ZSH session:"
einfo "\tsource /usr/share/zsh/plugins/${PN}/${PN}.zsh"
}