summaryrefslogtreecommitdiffstats
path: root/app-text
diff options
context:
space:
mode:
Diffstat (limited to 'app-text')
-rw-r--r--app-text/ripgrep/Manifest1
-rw-r--r--app-text/ripgrep/ripgrep-0.2.6.ebuild24
2 files changed, 25 insertions, 0 deletions
diff --git a/app-text/ripgrep/Manifest b/app-text/ripgrep/Manifest
new file mode 100644
index 0000000..0eec546
--- /dev/null
+++ b/app-text/ripgrep/Manifest
@@ -0,0 +1 @@
+DIST ripgrep-0.2.6-x86_64-unknown-linux-musl.tar.gz 3561487 SHA256 aaf36763ddf177b383ea53d7b926590565ddbb3e4cd8d7ded49ec9a64b808916 SHA512 10bf9e3ce052d3dba8e7d6cab56bd8dd6d40f00b65db92f50d984a7de65a39854463f1b88ee28acd06c2058f618f0b5430f4b24005766c88665152c108f990dc WHIRLPOOL dc6307edce0875d605d6ec586dcb9f33413d06f5d7c6615269d148ef5a8d0a164d1e639e06c24373d72bac17bc1e7764734bd44c3436ee4b69f360e27ca21b66
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
+}