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