#!/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 
}