diff options
author | agc <agc@pkgsrc.org> | 2009-01-10 21:03:58 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2009-01-10 21:03:58 +0000 |
commit | f6414594053058a08fd6fe5acd9daa4301098c05 (patch) | |
tree | d4a258f15e7e6dd00e5fe43312ad2cf86b30483e /devel/cunit/Makefile | |
parent | 74f19834a31f19f4de21807705fb8c1c9c9a99cd (diff) | |
download | pkgsrc-f6414594053058a08fd6fe5acd9daa4301098c05.tar.gz |
Initial import of CUnit-2.1 into the packages collection.
CUnit is a lightweight system for writing, administering, and running
unit tests in C. It provides C programmers a basic testing
functionality with a flexible variety of user interfaces.
CUnit is built as a static library which is linked with the user's
testing code. It uses a simple framework for building test
structures, and provides a rich set of assertions for testing common
data types. In addition, several different interfaces are provided
for running tests and reporting results. These interfaces currently
include:
Automated Output to xml file Non-interactive
Basic Flexible programming interface Non-interactive
Console Console interface (ansi C) Interactive
Curses Graphical interface (Unix) Interactive
Diffstat (limited to 'devel/cunit/Makefile')
-rw-r--r-- | devel/cunit/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/devel/cunit/Makefile b/devel/cunit/Makefile new file mode 100644 index 00000000000..f9fbc0ffd70 --- /dev/null +++ b/devel/cunit/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2009/01/10 21:03:58 agc Exp $ + +DISTNAME= CUnit-2.1-0-src +PKGNAME= CUnit-2.1 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cunit/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://cunit.sourceforge.net/ +COMMENT= C Unit xhecking test software + +PKG_DESTDIR_SUPPORT= user-destdir + +USE_LIBTOOL= yes +GNU_CONFIGURE= yes +DEPENDS+= autoconf-*:../../devel/autoconf + +WRKSRC= ${WRKDIR}/CUnit-2.1-0 + +INSTALLATION_DIRS+= include/CUnit share/doc/CUnit +INSTALLATION_DIRS+= share/CUnit share/doc/CUnit/headers + +.include "../../mk/bsd.pkg.mk" |