blob: c22ad67773b27f37775aed3bf374118fe28c0c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="make "
DEPS="glibc"
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
}
|