From b09cde0277ec06ea93277c91271bbff28282fa2a Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Mon, 7 Aug 2017 09:16:23 +0000 Subject: [PATCH] pv: new recipe (#1564) --- sys-apps/pv/pv-1.6.6.recipe | 56 +++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 sys-apps/pv/pv-1.6.6.recipe diff --git a/sys-apps/pv/pv-1.6.6.recipe b/sys-apps/pv/pv-1.6.6.recipe new file mode 100644 index 000000000..3d6fda4b4 --- /dev/null +++ b/sys-apps/pv/pv-1.6.6.recipe @@ -0,0 +1,56 @@ +SUMMARY="A terminal-based tool for monitoring \ +the progress of data through a pipeline" +DESCRIPTION="pv - Pipe Viewer - is a terminal-based tool for monitoring \ +the progress of data through a pipeline. It can be inserted into any \ +normal pipeline between two processes to give a visual indication of how \ +quickly data is passing through, how long it has taken, how near to \ +completion it is, and an estimate of how long it will be until completion. \ +Additional support is available for multiple instances working in tandem, \ +to given a visual indicator of relative throughput in a complex pipeline." +HOMEPAGE="http://www.ivarch.com/programs/pv.shtml" +COPYRIGHT="2015 Andrew Wood" +LICENSE="Artistic v2.0" +REVISION="1" +SOURCE_URI="http://www.ivarch.com/programs/sources/pv-$portVersion.tar.gz" +CHECKSUM_SHA256="94defb4183ae07c44219ba298d43c4991d6e203c29f74393d72ecad3b090508a" + +ARCHITECTURES="x86_gcc2 x86 x86_64" +SECONDARY_ARCHITECTURES="x86" + +PROVIDES=" + parted = $portVersion + cmd:pv + " +REQUIRES=" + haiku + lib:libintl + " + +BUILD_REQUIRES=" + haiku_devel + devel:libintl + " + +BUILD_PREREQUIRES=" + cmd:awk + cmd:find + cmd:gcc + cmd:make + cmd:pkg_config + " + +BUILD() +{ + runConfigure ./configure --disable-ipc + make $jobArgs +} + +INSTALL() +{ + make install +} + +TEST() +{ + make check +}