summaryrefslogtreecommitdiff
path: root/testing/libpipeline
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-09-19 01:27:07 -0700
committerroot <root@rshg054.dnsready.net>2012-09-19 01:27:07 -0700
commit3e9f7fe2a26ee7496abdc6e9e4b54c4f5caddcae (patch)
treef46a9b554f74e65e41a6b29012981878a5a0bdea /testing/libpipeline
parent0eb0f7dcc1b8f07ad3f0eb5086eafba8f627967d (diff)
Wed Sep 19 01:26:10 PDT 2012
Diffstat (limited to 'testing/libpipeline')
-rw-r--r--testing/libpipeline/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/libpipeline/PKGBUILD b/testing/libpipeline/PKGBUILD
new file mode 100644
index 000000000..c5493c781
--- /dev/null
+++ b/testing/libpipeline/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 166762 2012-09-18 18:12:10Z andyrtr $
+# Maintainer: Andreas Radke <andyrtr@archlinux.org>
+
+pkgname=libpipeline
+pkgver=1.2.2
+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')
+options=('!libtool')
+source=(http://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz)
+md5sums=('4367a3f598d171fd43dfa8620ed16d55')
+
+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
+}