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