View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo toolchain-funcs
DESCRIPTION="Hexdump utility from vim"
HOMEPAGE="https://github.com/vim/vim"
SRC_URI="https://raw.githubusercontent.com/vim/vim/master/src/xxd/xxd.c
https://raw.githubusercontent.com/vim/vim/master/runtime/doc/xxd.1
https://raw.githubusercontent.com/vim/vim/master/src/xxd/Makefile"
S="${WORKDIR}"
LICENSE="GPL-2 MIT"
SLOT="0"
RESTRICT="mirror"
RDEPEND="!app-editors/vim-core"
src_unpack() {
edo cp "${DISTDIR}"/{Makefile,xxd.{c,1}} "${S}"
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dobin xxd
doman xxd.1
}