forked from ports/contrib
16 lines
430 B
Plaintext
16 lines
430 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, maks1k at wp dot pl
|
||
|
|
||
|
name=pv
|
||
|
version=1.1.4
|
||
|
release=1
|
||
|
source=(http://pipeviewer.googlecode.com/files/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --disable-{lfs,nls} --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|