diff options
Diffstat (limited to 'app-misc/cstream')
-rw-r--r-- | app-misc/cstream/Manifest | 1 | ||||
-rw-r--r-- | app-misc/cstream/cstream-3.2.1.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/app-misc/cstream/Manifest b/app-misc/cstream/Manifest index 47c4b98b7b6c..749aab551d88 100644 --- a/app-misc/cstream/Manifest +++ b/app-misc/cstream/Manifest @@ -1 +1,2 @@ DIST cstream-3.1.1.tar.gz 96609 BLAKE2B 360183c215e4aaf536d6455393b8e5a27fcfb15dc581205e53c0a160c97d028165cd9c24feea13f9a4ed11de1710ffbd1d548cadaa7fdef912eb1ee932a49ee6 SHA512 8d6364da622711f6888fd221b2f36f5da23d2a562d5a797d58d7ef361415481de8ab9ae55ae856d47c2d0141d570e22a61ab0ce9954c043877196df168f2f43a +DIST cstream-3.2.1.tar.gz 110388 BLAKE2B 4537f2affd696620f53cfdb08d8f85ba01bdc1b5db8b3d8fa3e373a1ece96f2dc1e88efed20f1278ffde87cd1456b466d87c2c2c05480abdf79af84ca7d629f7 SHA512 f40819f07e27887528d9ff1abe6183e6e97fcefc60eb0b289f20449cdef73567b2cb5f40c52bf66dd3f4c8f869bdfdcbe0faa983659e6f8f427129f75ee1ee70 diff --git a/app-misc/cstream/cstream-3.2.1.ebuild b/app-misc/cstream/cstream-3.2.1.ebuild new file mode 100644 index 000000000000..315ee13ddc53 --- /dev/null +++ b/app-misc/cstream/cstream-3.2.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="General-purpose stream-handling tool like UNIX dd" +HOMEPAGE="http://www.cons.org/cracauer/cstream.html" +SRC_URI="http://www.cons.org/cracauer/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + + rm auxdir/missing || die "Failed to remove auxdir/missing" + + eautoreconf +} |