diff options
author | 2022-07-31 22:03:31 +0200 | |
---|---|---|
committer | 2022-07-31 22:03:31 +0200 | |
commit | e4afda5e047892249bdaf5a71c362ddd2a8ceb67 (patch) | |
tree | 12d245f0265a05b393c0974d75970fe10eaf883d /app-misc/pipeworks/pipeworks-0.4-r2.ebuild | |
parent | app-misc/nullmodem: update EAPI 6 -> 8 (diff) | |
download | gentoo-e4afda5e047892249bdaf5a71c362ddd2a8ceb67.tar.gz gentoo-e4afda5e047892249bdaf5a71c362ddd2a8ceb67.tar.bz2 gentoo-e4afda5e047892249bdaf5a71c362ddd2a8ceb67.zip |
app-misc/pipeworks: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc/pipeworks/pipeworks-0.4-r2.ebuild')
-rw-r--r-- | app-misc/pipeworks/pipeworks-0.4-r2.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-misc/pipeworks/pipeworks-0.4-r2.ebuild b/app-misc/pipeworks/pipeworks-0.4-r2.ebuild new file mode 100644 index 000000000000..bcef6fb41379 --- /dev/null +++ b/app-misc/pipeworks/pipeworks-0.4-r2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="A small utility that measures throughput between stdin and stdout" +HOMEPAGE="http://pipeworks.sourceforge.net/" +SRC_URI="mirror://sourceforge/pipeworks/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" + +PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) + +src_configure() { + tc-export CC +} + +src_install() { + dobin pipeworks + doman pipeworks.1 + dodoc Changelog README +} |