hd/hd-1.0.ebuild

26 lines
470 B
Bash
Raw Normal View History

2023-06-09 13:52:55 -05:00
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
2023-06-09 13:54:14 -05:00
DESCRIPTION="Hexdump program written in rust"
2023-06-09 13:52:55 -05:00
HOMEPAGE="https://github.com/coreydunn/hd"
SRC_URI="https://github.com/coreydunn/hd/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
emake all
}
src_install() {
emake DESTDIR="${D}" PREFIX=/usr install
}