23f1e1435c
Test::Class provides a simple way of creating classes and objects to test your code in an xUnit style. Built using Test::Builder it is designed to work with other Test::Builder based modules (Test::More, Test::Differences, Test::Exception, etc.)
30 lines
634 B
Makefile
30 lines
634 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/01/27 13:01:57 sturm Exp $
|
|
|
|
COMMENT= "easily create test classes in an xUnit style"
|
|
|
|
DISTNAME= Test-Class-0.07
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Nikolay Sturm <sturm@openbsd.org>
|
|
|
|
# GPL/Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/}
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::devel/p5-Devel-Symdump \
|
|
::devel/p5-Test-Builder-Tester \
|
|
::devel/p5-Test-Differences \
|
|
::devel/p5-Test-Exception
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|