diff options
| author | Armin Kuster <akuster808@gmail.com> | 2017-10-26 13:51:56 -0700 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2018-03-01 16:10:36 -0800 |
| commit | 56121f12f124bcfa4b94074bde2742542d402cc1 (patch) | |
| tree | e0688927e975c04814c64e305574e839a6ecc6ed /meta-oe/recipes-test/cxxtest | |
| parent | 17b3e32be2ff2370ca8d3f666ad9e704654a933d (diff) | |
| download | meta-openembedded-56121f12f124bcfa4b94074bde2742542d402cc1.tar.gz | |
cxxtest: move to recipes-test
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-test/cxxtest')
| -rw-r--r-- | meta-oe/recipes-test/cxxtest/cxxtest_4.3.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-test/cxxtest/cxxtest_4.3.bb b/meta-oe/recipes-test/cxxtest/cxxtest_4.3.bb new file mode 100644 index 0000000000..2915011731 --- /dev/null +++ b/meta-oe/recipes-test/cxxtest/cxxtest_4.3.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | DESCRIPTION = "CxxTest is a unit testing framework for C++ that is similar in spirit to JUnit, CppUnit, and xUnit." | ||
| 2 | HOMEPAGE = "http://cxxtest.com/" | ||
| 3 | LICENSE = "LGPL-2.0" | ||
| 4 | SECTION = "devel" | ||
| 5 | |||
| 6 | SRC_URI = "http://downloads.sourceforge.net/project/cxxtest/cxxtest/${PV}/cxxtest-${PV}.tar.gz" | ||
| 7 | SRC_URI[md5sum] = "b3a24b3e1aad9acf6adac37f4c3f83ec" | ||
| 8 | SRC_URI[sha256sum] = "356d0f4810e8eb5c344147a0cca50fc0d84122c286e7644b61cb365c2ee22083" | ||
| 9 | LIC_FILES_CHKSUM = "file://${WORKDIR}/cxxtest-${PV}/COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02" | ||
| 10 | S = "${WORKDIR}/cxxtest-${PV}/python" | ||
| 11 | |||
| 12 | inherit distutils | ||
| 13 | |||
| 14 | do_install_append() { | ||
| 15 | install -d ${D}${includedir} | ||
| 16 | cp -a ../cxxtest ${D}${includedir} | ||
| 17 | sed '1c\ | ||
| 18 | #!/usr/bin/env python' -i ${D}${bindir}/cxxtestgen | ||
| 19 | } | ||
| 20 | |||
| 21 | BBCLASSEXTEND = "native nativesdk" | ||
