Sharness is a portable shell library to write, run, and analyze automated tests for Unix programs. Since all tests output TAP, the Test Anything Protocol, they can be run with any TAP harness.
26 lines
450 B
Makefile
26 lines
450 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2021/05/04 18:53:01 tb Exp $
|
|
|
|
COMMENT = portable shell library supporting the test anything protocol
|
|
|
|
V = 1.1.0
|
|
|
|
GH_ACCOUNT = chriscool
|
|
GH_PROJECT = sharness
|
|
GH_TAGNAME = v$V
|
|
|
|
CATEGORIES = devel
|
|
|
|
MAINTAINER = Theo Buehler <tb@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# test/Makefile uses some GNUisms.
|
|
USE_GMAKE = Yes
|
|
NO_BUILD = Yes
|
|
|
|
TEST_DEPENDS = devel/p5-IO-Tty \
|
|
shells/bash
|
|
|
|
.include <bsd.port.mk>
|