gentoo-ebuilds/app-misc/hastyhex/hastyhex-1.0.0.ebuild
Michał Górny d3e1ce9375
app-misc/hastyhex: Stabilize 1.0.0 amd64, #924514
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2024-02-14 13:26:19 +01:00

23 lines
486 B
Bash

# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="A blazing fast hex dumper"
HOMEPAGE="https://github.com/skeeto/hastyhex"
SRC_URI="https://github.com/skeeto/${PN}/releases/download/v${PV}/${P}.tar.xz"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="amd64"
src_compile() {
$(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o ${PN} ${PN}.c || die
}
src_install() {
dobin ${PN}
doman ${PN}.1
}