mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
654 B
Bash
19 lines
654 B
Bash
# Maintainer: Aaron Schaefer <aaron@elasticdog.com>
|
|
pkgname=pv
|
|
pkgver=1.1.4
|
|
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://downloads.sourceforge.net/sourceforge/pipeviewer/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('63033e090d61a040407bfd043aeb6d27')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
install -D -m644 doc/COPYING $startdir/pkg/usr/share/licenses/$pkgname/COPYING
|
|
}
|