2da45b1319
The Automated Testing Framework (ATF) is a collection of libraries and utilities designed to ease unattended application testing in the hands of developers and end users of a specific piece of software. As regards developers, ATF provides the necessary means to easily create test suites composed of multiple test programs, which in turn are a collection of test cases. It also attempts to simplify the debugging of problems when these test cases detect an error by providing as much information as possible about the failure. As regards users, it simplifies the process of running the test suites and, in special, encourages end users to run them often: they do not need to have source trees around nor any other development tools installed to be able to certify that a given piece of software works on their machine as advertised. Yes, these are (part of) the results of my SoC 2007 project :-)
22 lines
506 B
Makefile
22 lines
506 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/08/20 11:59:17 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= atf-0.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.1/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://www.NetBSD.org/~jmmv/atf/
|
|
COMMENT= Automated testing framework
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c++
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS+= ATF_CONFSUBDIR=
|
|
CONFIGURE_ARGS+= ATF_SHELL=${SH:Q}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
PKG_SYSCONFSUBDIR= atf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|