diff options
author | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2022-12-10 03:08:11 +0400 |
---|---|---|
committer | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2022-12-10 03:08:11 +0400 |
commit | eb54ed1d458e79157cdd2886637d918482d45536 (patch) | |
tree | f43a5a094516a420e7a2262aaf4e00ca2aa65487 /app-text | |
parent | dev-embedded/arachne-pnr: new package, add 0_p20180827, 9999 (diff) | |
download | guru-eb54ed1d458e79157cdd2886637d918482d45536.tar.gz guru-eb54ed1d458e79157cdd2886637d918482d45536.tar.bz2 guru-eb54ed1d458e79157cdd2886637d918482d45536.zip |
app-text/the-platinum-searcher-bin: add
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/the-platinum-searcher-bin/Manifest | 1 | ||||
-rw-r--r-- | app-text/the-platinum-searcher-bin/the-platinum-searcher-bin-2.2.0.ebuild | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/app-text/the-platinum-searcher-bin/Manifest b/app-text/the-platinum-searcher-bin/Manifest new file mode 100644 index 000000000..1fb8656f6 --- /dev/null +++ b/app-text/the-platinum-searcher-bin/Manifest @@ -0,0 +1 @@ +DIST pt_linux_amd64.tar.gz 2378105 BLAKE2B b48eb9fb327cbbda004a246272efde3eb84f45842768a02fa3b54256ab7f522c7c4b91f1a13a726c36ff121f71ce53e6d2a158a2f2c7c8cd991963f793de2f7f SHA512 bb0da7b89b5c0c079588c1f3a0e755db0aeac189b676b8df1fa756bff13121e06e61f747c86cd22c92928db22db45b175155cd09b82ff87b289e83581a07c3e4 diff --git a/app-text/the-platinum-searcher-bin/the-platinum-searcher-bin-2.2.0.ebuild b/app-text/the-platinum-searcher-bin/the-platinum-searcher-bin-2.2.0.ebuild new file mode 100644 index 000000000..a7092781f --- /dev/null +++ b/app-text/the-platinum-searcher-bin/the-platinum-searcher-bin-2.2.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Fast CLI search tool, faster than grep, ack, silver_searcher (ag)" +HOMEPAGE="https://github.com/monochromegane/the_platinum_searcher" +SRC_URI="https://github.com/monochromegane/the_platinum_searcher/releases/download/v${PV}/pt_linux_amd64.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64" +SLOT="0" + +S="${WORKDIR}/pt_linux_amd64" + +src_install() { + dobin pt +} |