diff options
Diffstat (limited to 'repo/core/libpipeline.xibuild')
-rw-r--r-- | repo/core/libpipeline.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/libpipeline.xibuild b/repo/core/libpipeline.xibuild new file mode 100644 index 0000000..2568165 --- /dev/null +++ b/repo/core/libpipeline.xibuild @@ -0,0 +1,12 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://gitlab.com/cjwatson/libpipeline +DESC="A library for manipulating pipelines of subprocesses in a flexible and convenient way" + +build () { + ./configure --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} |