9e9c041463
changes since. The Automated Testing Framework (ATF) is a collection of libraries and utilities designed to easy unattended application testing in the hands of developers and end users of a specific piece of software.
33 lines
718 B
Makefile
33 lines
718 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2014/03/16 11:27:28 sthen Exp $
|
|
|
|
COMMENT = Automated Testing Framework
|
|
DISTNAME = atf-0.18
|
|
|
|
SHARED_LIBS += atf-c++ 0.0 # 0.0
|
|
SHARED_LIBS += atf-c 0.0 # 0.0
|
|
|
|
CATEGORIES = devel
|
|
HOMEPAGE = https://github.com/jmmv/atf
|
|
|
|
MAINTAINER = Sergey Bronnikov <estetus@gmail.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c m stdc++
|
|
|
|
MASTER_SITES = https://github.com/jmmv/atf/releases/download/${DISTNAME}/
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = ${CONFIGURE_SHARED}
|
|
# Don't pickup bash
|
|
CONFIGURE_ENV = ATF_SHELL=/bin/sh
|
|
|
|
TEST_DEPENDS = ${BASE_PKGPATH} \
|
|
devel/kyua-cli
|
|
TEST_TARGET = installcheck
|
|
|
|
PORTHOME = ${WRKDIR}
|
|
|
|
.include <bsd.port.mk>
|