# 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.10.5
release=1
source=(http://www.ivarch.com/programs/sources/$name-$version.tar.gz)

build() {
    cd $name-$version
    sed -i -e '/^install-data-am:.*/s/install-dist_docDATA//g' Makefile.in
    ./configure --prefix=/usr \
        --disable-nls
    make
    make DESTDIR=$PKG install
}
