blob: f37a8fe6b6b415ef5854438854b325cdc9d1a97e (
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.0
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 }
|