mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
46 lines
1010 B
Bash
46 lines
1010 B
Bash
SUMMARY="A graphical front-end for GCC's coverage testing tool gcov"
|
|
DESCRIPTION="collects gcov data for multiple source files and \
|
|
creates HTML pages containing the source code annotated with \
|
|
coverage information. It also adds overview pages for easy \
|
|
navigation within the file structure. LCOV supports statement, \
|
|
function and branch coverage measurement."
|
|
HOMEPAGE="http://ltp.sourceforge.net/coverage/lcov.php"
|
|
COPYRIGHT="2002 - 2016 The lcov Developers"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/linux-test-project/lcov/releases/download/v1.12/lcov-1.12.tar.gz"
|
|
CHECKSUM_SHA256="b474e49c6c962754063b3be97a757a2ba9e7a455f0aea612863bf67e9b8b8ea7"
|
|
PATCHES="lcov-1.12.patchset"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
lcov = $portVersion
|
|
cmd:gendesc
|
|
cmd:genhtml
|
|
cmd:geninfo
|
|
cmd:genpng
|
|
cmd:lcov
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
perl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:perl
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install CFG_DIR=/etc BIN_DIR=$binDir MAN_DIR=$manDir
|
|
}
|