blob: 72d77b1954fea2c574d25d252e03834e0e5baf22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module bash-completion-r1
DESCRIPTION="A fast and powerful alternative to grep."
HOMEPAGE="https://github.com/svent/sift"
SRC_URI="https://github.com/svent/sift/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://codeberg.org/brtz/guru-distfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
src_compile() {
ego build .
}
src_install() {
dobin sift
dodoc README.md
newbashcomp "sift-completion.bash" "sift"
}
|