diff options
author | Sam James <sam@gentoo.org> | 2022-06-24 02:49:45 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-24 04:13:46 +0100 |
commit | c2320ac54a85cbc3a4084ce2f119c8ef63d1e02c (patch) | |
tree | d670430978ab3c5b73ad04234c42271c34ca4655 /app-misc/nnn/nnn-2.7.ebuild | |
parent | dev-python/git-review: 2.3.1 bump (diff) | |
download | gentoo-c2320ac54a85cbc3a4084ce2f119c8ef63d1e02c.tar.gz gentoo-c2320ac54a85cbc3a4084ce2f119c8ef63d1e02c.tar.bz2 gentoo-c2320ac54a85cbc3a4084ce2f119c8ef63d1e02c.zip |
app-misc/nnn: drop versions
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc/nnn/nnn-2.7.ebuild')
-rw-r--r-- | app-misc/nnn/nnn-2.7.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/app-misc/nnn/nnn-2.7.ebuild b/app-misc/nnn/nnn-2.7.ebuild deleted file mode 100644 index 6ca9e1095ee0..000000000000 --- a/app-misc/nnn/nnn-2.7.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2019 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 -} |