blob: e51671a56a644cf3aee9133520200614cccf8ac7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | #!/bin/bash
MAKEDEPS=(make )
DEPS=(awk)
PKG_VER=0.15.2
SOURCE=https://github.com/libcheck/check/releases/download/$PKG_VER/check-$PKG_VER.tar.gz
DESC="A unit testing framework for C"
build () {
    ./configure --prefix=/usr --disable-static
    make
}
package () {
    make DESTDIR=$PKG_DEST install 
}
 |