diff options
author | 2022-11-04 19:47:36 +0000 | |
---|---|---|
committer | 2022-11-04 19:58:33 +0000 | |
commit | 17668763f128dc6bd5f11ca4013a1a1e28290ac1 (patch) | |
tree | bd0223032a080464904841225d4f6b2597604ae3 /app-misc/hastyhex/hastyhex-1.0.0.ebuild | |
parent | dev-python/virtualenvwrapper: add bitbucket upstream metadata (diff) | |
download | gentoo-17668763f128dc6bd5f11ca4013a1a1e28290ac1.tar.gz gentoo-17668763f128dc6bd5f11ca4013a1a1e28290ac1.tar.bz2 gentoo-17668763f128dc6bd5f11ca4013a1a1e28290ac1.zip |
app-misc/hastyhex: new package, add 1.0.0
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'app-misc/hastyhex/hastyhex-1.0.0.ebuild')
-rw-r--r-- | app-misc/hastyhex/hastyhex-1.0.0.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-misc/hastyhex/hastyhex-1.0.0.ebuild b/app-misc/hastyhex/hastyhex-1.0.0.ebuild new file mode 100644 index 000000000000..87471bff2613 --- /dev/null +++ b/app-misc/hastyhex/hastyhex-1.0.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 2022 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 +} |