description="A terminal-based tool for monitoring the progress of data through a pipeline."
url="http://www.ivarch.com/programs/pv.shtml"
packager="greg<greg@nutyx.org>"

# Depends on: glibc

name=pv
version=1.6.6
release=1

source=(https://www.ivarch.com/programs/sources/$name-$version.tar.bz2)

build() {

  cd $SRC/$name-$version
  ./configure --prefix=/usr --mandir=/usr/share/man
  make
  
}

package() {

  cd $SRC/$name-$version
  make DESTDIR=$PKG install
  
}
