# Description: A terminal-based tool for monitoring the progress of data through a pipeline
# URL: http://www.ivarch.com/programs/pv.shtml
# Maintainer: Matt Housh, jaeger at crux dot ninja

name=pv
version=1.6.0
release=1
source=(http://www.ivarch.com/programs/sources/$name-$version.tar.bz2)

build() {
    cd $name-$version
    ./configure --prefix=/usr \
        --disable-nls
    make
    make DESTDIR=$PKG install
}