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