# $Id: PKGBUILD 208898 2014-03-28 15:18:03Z andyrtr $ # Maintainer: Andreas Radke pkgname=libpipeline pkgver=1.3.0 pkgrel=1 pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible and convenient way" arch=('i686' 'x86_64') url="http://libpipeline.nongnu.org/" license=('GPL') depends=('glibc') source=(http://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz{,.sig}) md5sums=('242428c01dca255cdcb2195073a9c6ed' 'SKIP') build() { cd $pkgname-$pkgver ./configure --prefix=/usr make } check() { cd $pkgname-$pkgver make check } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir/" install }