blob: 5a0345d2fdc0431472709a5f23a08da75db2def7 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A tool to check internet-drafts (IDs) for submission nits"
HOMEPAGE="https://www.ietf.org/tools/idnits/"
SRC_URI="https://github.com/ietf-tools/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
app-shells/bash
sys-apps/coreutils
virtual/awk
"
src_install() {
dobin idnits
dodoc about changelog todo
}
|