From 3b6c7b7284fcd6e201c35423f1cfde967abf102f Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Sat, 29 Aug 2020 02:21:46 +0200 Subject: [PATCH] add app-crypt/hash-pipe --- app-crypt/hash-pipe/hash-pipe-0.1.0.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app-crypt/hash-pipe/hash-pipe-0.1.0.ebuild diff --git a/app-crypt/hash-pipe/hash-pipe-0.1.0.ebuild b/app-crypt/hash-pipe/hash-pipe-0.1.0.ebuild new file mode 100644 index 0000000..2c2cadb --- /dev/null +++ b/app-crypt/hash-pipe/hash-pipe-0.1.0.ebuild @@ -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} +}