diff options
author | Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> | 2014-10-28 20:14:49 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-29 22:07:03 +0100 |
commit | c385bf19786a5a220dc9d1a82eb28df57afebf8b (patch) | |
tree | 3f552577db5a7dd94767bb7b77495fb70ad87cdf /package/cppunit/cppunit.mk | |
parent | a83aa48ea0c0bbe2d9ee2254ec5197bb2a9b7303 (diff) | |
download | buildroot-c385bf19786a5a220dc9d1a82eb28df57afebf8b.tar.gz buildroot-c385bf19786a5a220dc9d1a82eb28df57afebf8b.zip |
cppunit: new package
CppUnit is the C++ port of the famous JUnit framework for unit testing.
Test output is in XML or text format for automatic testing and GUI
based for supervised tests.
http://www.freedesktop.org/wiki/Software/cppunit/
[Thomas:
- change license to LGPLv2.1, since there is no indication that the
"or later" option is used.
- slightly rewrap text in Config.in file.]
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/cppunit/cppunit.mk')
-rw-r--r-- | package/cppunit/cppunit.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/cppunit/cppunit.mk b/package/cppunit/cppunit.mk new file mode 100644 index 0000000000..b8251c297a --- /dev/null +++ b/package/cppunit/cppunit.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# cppunit +# +################################################################################ + +CPPUNIT_VERSION = 1.13.2 +CPPUNIT_SITE = http://dev-www.libreoffice.org/src +CPPUNIT_INSTALL_STAGING = YES +CPPUNIT_LICENSE = LGPLv2.1 +CPPUNIT_LICENSE_FILES = COPYING +CPPUNIT_CONF_OPTS = --disable-doxygen + +$(eval $(autotools-package)) |