summaryrefslogtreecommitdiff
path: root/testing/libpipeline/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/libpipeline/PKGBUILD')
-rw-r--r--testing/libpipeline/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/libpipeline/PKGBUILD b/testing/libpipeline/PKGBUILD
new file mode 100644
index 000000000..086d93d54
--- /dev/null
+++ b/testing/libpipeline/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 119506 2011-04-11 19:53:04Z andyrtr $
+# Maintainer: Andreas Radke <andyrtr@archlinux.org>
+
+pkgname=libpipeline
+pkgver=1.2.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')
+groups=('base')
+depends=('glibc')
+options=('!libtool')
+source=(http://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz)
+md5sums=('dd3a987a0d2b594716baee2f73d61ae3')
+
+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
+}