Files
gentoo/dev-util/xxdi/xxdi-1.0.0.ebuild
Yongxiang Liang a53b08a39a dev-util/xxdi: keyword ~riscv
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang@gmail.com>
Signed-off-by: Yixun Lan <dlan@gentoo.org>
2021-12-31 11:35:01 +08:00

24 lines
527 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MODULE_VERSION=001
DESCRIPTION="Simple alternative to vim's 'xxd -i' mode"
HOMEPAGE="https://github.com/gregkh/xxdi"
SRC_URI="https://github.com/gregkh/xxdi/archive/v${MODULE_VERSION}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${MODULE_VERSION}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm64 ppc ppc64 ~riscv x86"
RDEPEND="dev-lang/perl
dev-perl/File-Slurp"
src_install() {
dobin xxdi.pl
dodoc README.md
}