summaryrefslogtreecommitdiff
path: root/repo/system/libpipeline/libpipeline.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/libpipeline/libpipeline.xibuild')
-rw-r--r--repo/system/libpipeline/libpipeline.xibuild17
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/system/libpipeline/libpipeline.xibuild b/repo/system/libpipeline/libpipeline.xibuild
new file mode 100644
index 0000000..e7cac33
--- /dev/null
+++ b/repo/system/libpipeline/libpipeline.xibuild
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+MAKEDEPS="make "
+DEPS="musl"
+
+PKG_VER=1.5.5
+SOURCE=http://download.savannah.nongnu.org/releases/libpipeline/libpipeline-$PKG_VER.tar.gz
+DESC="A library for manipulating pipelines of subprocesses in a flexible and convenient way"
+
+build () {
+ ./configure --prefix=/usr
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}