summaryrefslogtreecommitdiff
path: root/testing/libpipeline/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-04-12 10:53:36 +0000
committerroot <root@rshg047.dnsready.net>2011-04-12 10:53:36 +0000
commit28b5bbf3fee0627993658e096eadab71c2779912 (patch)
treeb799e892101aaaedafdcf1315c4def0ff6bdc1c4 /testing/libpipeline/PKGBUILD
parentcabd4a9c1f8304f0d57005b9f31231fc191c8778 (diff)
Tue Apr 12 10:53:36 UTC 2011
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
+}