forked from ports/contrib
16 lines
441 B
Plaintext
16 lines
441 B
Plaintext
# Description: terminal-based tool for monitoring the progress of data through a pipeline
|
|
# URL: http://www.ivarch.com/programs/pv.shtml
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
|
|
name=pv
|
|
version=1.3.4
|
|
release=1
|
|
source=(http://www.ivarch.com/programs/sources/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --disable-{lfs,nls} --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|