diff options
| author | Ting Liu <ting.liu@freescale.com> | 2015-01-14 23:36:03 +0800 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-01-20 16:06:14 +0100 |
| commit | 5bbd2ba560ed5e52a7b60f9485a66d1f1464508d (patch) | |
| tree | 99bcd0ef49add638a0fc666fb0353b1e5db8add5 | |
| parent | 4ec551cd35782add19eab976859f5dcbab5cefd9 (diff) | |
| download | meta-openembedded-5bbd2ba560ed5e52a7b60f9485a66d1f1464508d.tar.gz | |
lcov: add initial recipe 1.11
Signed-off-by: Ting Liu <ting.liu@freescale.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/lcov/lcov_1.11.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/lcov/lcov_1.11.bb b/meta-oe/recipes-support/lcov/lcov_1.11.bb new file mode 100644 index 0000000000..5f3b889346 --- /dev/null +++ b/meta-oe/recipes-support/lcov/lcov_1.11.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | SUMMARY = "A graphical front-end for gcov" | ||
| 2 | HOMEPAGE = "http://ltp.sourceforge.net/coverage/lcov.php" | ||
| 3 | DESCRIPTION = "LCOV is a graphical front-end for GCC's coverage testing \ | ||
| 4 | tool gcov. It collects gcov data for multiple source files and creates \ | ||
| 5 | HTML pages containing the source code annotated with coverage information. \ | ||
| 6 | It also adds overview pages for easy navigation within the file structure. \ | ||
| 7 | LCOV supports statement, function and branch coverage measurement." | ||
| 8 | LICENSE = "GPL-2.0" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
| 10 | |||
| 11 | RDEPENDS_${PN} += " \ | ||
| 12 | gcov \ | ||
| 13 | perl \ | ||
| 14 | perl-module-filehandle \ | ||
| 15 | perl-module-getopt-std \ | ||
| 16 | perl-module-digest-sha \ | ||
| 17 | " | ||
| 18 | |||
| 19 | SRC_URI = "http://downloads.sourceforge.net/ltp/${BP}.tar.gz" | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "e79b799ae3ce149aa924c7520e993024" | ||
| 22 | SRC_URI[sha256sum] = "c282de8d678ecbfda32ce4b5c85fc02f77c2a39a062f068bd8e774d29ddc9bf8" | ||
| 23 | |||
| 24 | do_install() { | ||
| 25 | oe_runmake install PREFIX=${D} | ||
| 26 | sed -i -e '1s,#!.*perl,#! ${USRBINPATH}/env perl,' ${D}${bindir}/* | ||
| 27 | } | ||
| 28 | |||
