blob: 1948dcc1b163c230f6eba3f56634ca0499769c22 (
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
26
27
28
29
30
31
32
33
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Format agnostic jQ"
HOMEPAGE="https://github.com/jzelinskie/faq"
SRC_URI="https://github.com/jzelinskie/faq/archive/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar.xz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="app-misc/jq
dev-libs/oniguruma:="
DOCS=( README.md docs/examples.md )
QA_FLAGS_IGNORED="usr/bin/faq"
QA_PRESTRIPPED="usr/bin/faq"
src_compile() {
emake FAQ_VERSION="${PV}" build
}
src_install() {
emake DESTDIR="${D}" prefix="${EPREFIX}" bindir="/usr/bin" install
einstalldocs
}
|