diff options
Diffstat (limited to 'community/pv/PKGBUILD')
-rw-r--r-- | community/pv/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/pv/PKGBUILD b/community/pv/PKGBUILD new file mode 100644 index 000000000..7f4651a3b --- /dev/null +++ b/community/pv/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 37958 2011-01-19 05:59:36Z kchen $ +# Maintainer: Kaiting Chen <kaitocracy@gmail.com> +# Contributor: Aaron Schaefer <aaron@elasticdog.com> + +pkgname=pv +pkgver=1.2.0 +pkgrel=1 +pkgdesc='A terminal-based tool for monitoring the progress of data through a pipeline' +arch=('i686' 'x86_64') +url='http://www.ivarch.com/programs/pv.shtml' +license=('custom:Artistic 2.0') +depends=('glibc') +source=("http://pipeviewer.googlecode.com/files/$pkgname-$pkgver.tar.gz") +md5sums=('f7cc65c850ac98c6013cc448050eee4b') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --mandir=/usr/share/man + make; make DESTDIR=$pkgdir install + install -Dm644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} |