# $Id: PKGBUILD 202643 2013-12-23 07:54:41Z andyrtr $ # Maintainer: Andreas Radke pkgname=libpipeline pkgver=1.2.6 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=('6d1d51a5dc102af41e0d269d2a31e6f9' 'SKIP') build() { cd $pkgname-$pkgver ./configure --prefix=/usr make } check() { cd $pkgname-$pkgver make check } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir/" install }