diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2020-01-16 12:31:25 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-01-16 12:31:52 +0300 |
commit | 021bb105de14233d90ea7654d79aa3d78c3b5b14 (patch) | |
tree | 6e02cc6465198bf4d7cd7f9dc0318b7044c3a62f /app-misc/nnn/nnn-2.9.ebuild | |
parent | sys-apps/sed: Version 4.7 stable for x86 (diff) | |
download | gentoo-021bb105de14233d90ea7654d79aa3d78c3b5b14.tar.gz gentoo-021bb105de14233d90ea7654d79aa3d78c3b5b14.tar.bz2 gentoo-021bb105de14233d90ea7654d79aa3d78c3b5b14.zip |
app-misc/nnn: Version bump (v2.9)
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'app-misc/nnn/nnn-2.9.ebuild')
-rw-r--r-- | app-misc/nnn/nnn-2.9.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-misc/nnn/nnn-2.9.ebuild b/app-misc/nnn/nnn-2.9.ebuild new file mode 100644 index 000000000000..88ef20531476 --- /dev/null +++ b/app-misc/nnn/nnn-2.9.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit bash-completion-r1 toolchain-funcs + +DESCRIPTION="The missing terminal file browser for X" +HOMEPAGE="https://github.com/jarun/nnn" +SRC_URI="https://github.com/jarun/nnn/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/ncurses:0= + sys-libs/readline:0=" +RDEPEND="${DEPEND}" + +src_prepare() { + default + tc-export CC + sed -i -e '/strip/d' Makefile || die "sed failed" + +} + +src_install() { + emake PREFIX="/usr" DESTDIR="${D}" install + + newbashcomp misc/auto-completion/bash/nnn-completion.bash nnn + + insinto /usr/share/fish/vendor_completions.d + doins misc/auto-completion/fish/nnn.fish + + insinto /usr/share/zsh/site-functions + doins misc/auto-completion/zsh/_nnn + + einstalldocs +} |