blob: e300932805706f89403757ff643d83cbc2f56b15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
NAME="gcovr"
DESC="Generates a simple report that summarizes the gcc code coverage"
MAKEDEPS=""
PKG_VER=5.2
SOURCE="https://github.com/gcovr/gcovr/archive/$PKG_VER.tar.gz"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$PKG_DEST"
}
|