core/libpipeline/PKGBUILD

28 lines
606 B
Bash
Raw Normal View History

pkgname=libpipeline
2014-11-30 07:40:01 +08:00
pkgver=1.4.0
pkgrel=1
pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible and convenient way"
2014-11-30 07:40:01 +08:00
arch=('x86_64')
url="http://libpipeline.nongnu.org/"
license=('GPL')
groups=('base')
depends=('glibc')
source=(http://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz)
2014-11-30 07:40:01 +08:00
sha1sums=('c4deac1c04670beac0e25d78ef1922e6a3740965')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
check() {
cd "$srcdir/$pkgname-$pkgver"
make -k check
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
2014-11-30 07:40:01 +08:00
}