summaryrefslogtreecommitdiffstats
path: root/app-text/ripgrep/ripgrep-0.2.6.ebuild
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-11-05 17:32:13 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-11-05 17:32:13 +0100
commit9dcbb198a9065773fcf7aaa1a6cbf0e11cf81824 (patch)
tree2e2bd2f903968fb98fe238335bf283ffc837db7a /app-text/ripgrep/ripgrep-0.2.6.ebuild
parentAdd unifi (diff)
downloadportage-9dcbb198a9065773fcf7aaa1a6cbf0e11cf81824.tar.xz
portage-9dcbb198a9065773fcf7aaa1a6cbf0e11cf81824.zip
Add ripgrep
Diffstat (limited to '')
-rw-r--r--app-text/ripgrep/ripgrep-0.2.6.ebuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/app-text/ripgrep/ripgrep-0.2.6.ebuild b/app-text/ripgrep/ripgrep-0.2.6.ebuild
new file mode 100644
index 0000000..02684cf
--- /dev/null
+++ b/app-text/ripgrep/ripgrep-0.2.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="ag/grep replacement"
+HOMEPAGE="https://github.com/BurntSushi/ripgrep"
+SRC_URI="https://github.com/BurntSushi/ripgrep/releases/download/${PV}/${P}-x86_64-unknown-linux-musl.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${P}-x86_64-unknown-linux-musl"
+
+src_install() {
+ dobin rg
+ doman rg.1
+}