diff options
author | 2019-01-05 15:28:58 +0300 | |
---|---|---|
committer | 2019-01-05 15:30:21 +0300 | |
commit | 034abee1d3ed4da370b849afdff1fc866d367e59 (patch) | |
tree | e1323a3d65d7d067ca263db52177f788524c6a08 /app-misc/nnn/nnn-2.2.ebuild | |
parent | virtual/perl-version: sh stable wrt bug #673542 (diff) | |
download | gentoo-034abee1d3ed4da370b849afdff1fc866d367e59.tar.gz gentoo-034abee1d3ed4da370b849afdff1fc866d367e59.tar.bz2 gentoo-034abee1d3ed4da370b849afdff1fc866d367e59.zip |
app-misc/nnn: Version bump (v2.2)
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'app-misc/nnn/nnn-2.2.ebuild')
-rw-r--r-- | app-misc/nnn/nnn-2.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-misc/nnn/nnn-2.2.ebuild b/app-misc/nnn/nnn-2.2.ebuild new file mode 100644 index 000000000000..8caa1e33b705 --- /dev/null +++ b/app-misc/nnn/nnn-2.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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 scripts/auto-completion/bash/nnn-completion.bash nnn + + insinto /usr/share/fish/vendor_completions.d + doins scripts/auto-completion/fish/nnn.fish + + insinto /usr/share/zsh/site-functions + doins scripts/auto-completion/zsh/_nnn + + einstalldocs +} |