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