blob: c03e775eb21bfdb7d7f212a75a204aef732352e7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #!/bin/bash
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 
}
 |