add app-crypt/hash-pipe

This commit is contained in:
Martin Sekera 2020-08-29 02:21:46 +02:00
parent 6509a9af71
commit 3b6c7b7284

View file

@ -0,0 +1,28 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Like sha256sum or sha512sum, except it passes data through."
HOMEPAGE="https://git.decade.cz/decade-public/${PN}"
SRC_URI="https://git.decade.cz/decade-public/${PN}/archive/v${PV}.tar.gz -> ${PN}-v${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="*"
IUSE=""
RDEPEND="
dev-libs/openssl
sys-libs/glibc
"
S="${WORKDIR}/${PN}"
src_compile() {
./build.sh
}
src_install() {
dobin ${PN}
}