blob: f01250cd73f3dba24cca878dcb5131558bae1c27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
MAKEDEPS=(make )
DEPS=(glibc)
SOURCE=https://gitlab.com/cjwatson/libpipeline
DESC="A library for manipulating pipelines of subprocesses in a flexible and convenient way"
build () {
./bootstrap
./configure --prefix=/usr
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|