# HG changeset patch # User Allan Pinto # Date 1244458948 0 # Node ID ecbe1dd883813bcada67fc7e32be4e09414c3307 # Parent 084ebc7a718e570daa8583b82958673f17479451 add pv | pipe viewer for unix diff -r 084ebc7a718e -r ecbe1dd88381 pv/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pv/receipt Mon Jun 08 11:02:28 2009 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="pv" +VERSION="1.1.4" +CATEGORY="misc" +SHORT_DESC="pipe viewer for monitoring data through a pipeline" +MAINTAINER="allan316@gmail.com" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.ivarch.com/programs/pv.shtml" +WGET_URL="http://pipeviewer.googlecode.com/files/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + +} +