37 lines
1.4 KiB
Text
37 lines
1.4 KiB
Text
# Template file for 'atf'
|
|
pkgname=atf
|
|
version=0.13
|
|
distfiles="http://ftp.netbsd.org/pub/NetBSD/misc/jmmv/atf/0.13/atf-$version.tar.gz"
|
|
build_style=gnu_configure
|
|
short_desc="Automated Testing Framework"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.netbsd.org/~jmmv/atf/"
|
|
license="Simplified BSD"
|
|
checksum=fbdcddb6fd7b346643ef0d7a5d446e1d3110174e2625fb0c29b1470331c385ec
|
|
long_desc="
|
|
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."
|
|
|
|
pre_configure()
|
|
{
|
|
# GRRR!
|
|
sed -i -e "s|\-Werror||g" configure
|
|
}
|
|
|
|
Add_dependency run libgcc
|
|
Add_dependency run glibc
|
|
Add_dependency run libstdc++
|
|
Add_dependency full gdb
|