17 lines
422 B
Plaintext
17 lines
422 B
Plaintext
# 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.7.24
|
|
release=1
|
|
source=(http://www.ivarch.com/programs/sources/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|