blob: 36f4810619c49d738c43370ff5b677973ac05839 (
plain)
1 # Description: A terminal-based tool for monitoring the progress of data through a pipeline
2 # URL: http://www.ivarch.com/programs/pv.shtml
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=pv
6 version=1.6.20
7 release=1
8 source=(http://www.ivarch.com/programs/sources/$name-$version.tar.bz2)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr \
13 --disable-nls
14 make
15 make DESTDIR=$PKG install
16 }
|