package/cunit: new package

Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
[Thomas: fix license, it's LGPL-2.0+.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Matt Weber 2018-11-01 13:58:15 -05:00 committed by Thomas Petazzoni
parent d6bd004a0b
commit fb04a819ae
5 changed files with 28 additions and 0 deletions

View file

@ -1372,6 +1372,7 @@ F: package/checkpolicy/
F: package/checksec/
F: package/cgroupfs-mount/
F: package/crda/
F: package/cunit/
F: package/devmem2/
F: package/dnsmasq/
F: package/dosfstools/

View file

@ -142,6 +142,7 @@ menu "Development tools"
source "package/check/Config.in"
source "package/cmake/Config.in"
source "package/cppunit/Config.in"
source "package/cunit/Config.in"
source "package/cvs/Config.in"
source "package/cxxtest/Config.in"
source "package/diffutils/Config.in"

6
package/cunit/Config.in Normal file
View file

@ -0,0 +1,6 @@
config BR2_PACKAGE_CUNIT
bool "cunit"
help
An automated testing framework in 'C'.
http://cunit.sourceforge.net/

3
package/cunit/cunit.hash Normal file
View file

@ -0,0 +1,3 @@
# Locally calculated:
sha256 f5b29137f845bb08b77ec60584fdb728b4e58f1023e6f249a464efa49a40f214 CUnit-2.1-3.tar.bz2
sha256 5d9d73d41a57dd2f34487ef3978a2c13cdb97294baeeb81fcd274796399eb15f COPYING

17
package/cunit/cunit.mk Normal file
View file

@ -0,0 +1,17 @@
################################################################################
#
# cunit
#
################################################################################
CUNIT_VERSION = 2.1-3
CUNIT_SITE = http://downloads.sourceforge.net/project/cunit/CUnit/$(CUNIT_VERSION)
CUNIT_SOURCE = CUnit-$(CUNIT_VERSION).tar.bz2
CUNIT_INSTALL_STAGING = YES
CUNIT_LICENSE = LGPL-2.0+
CUNIT_LICENSE_FILES = COPYING
# The source archive does not have the autoconf/automake material generated.
CUNIT_AUTORECONF = YES
$(eval $(autotools-package))