pkgsrc/devel/p5-Test-Refcount/Makefile
sno aa7992a703 Adding new package for Perl module Test::Refcount from CPAN distribution
Test-Refcount version 0.07 into devel/p5-Test-Refcount

The Perl garbage collector uses simple reference counting during the normal
execution of a program. This means that cycles or unweakened references in
other parts of code can keep an object around for longer than intended. To
help avoid this problem, the reference count of a new object from its class
constructor ought to be 1. This way, the caller can know the object will be
properly DESTROYed when it drops all of its references to it.
2014-02-23 11:19:52 +00:00

26 lines
789 B
Makefile

# $NetBSD: Makefile,v 1.1 2014/02/23 11:19:52 sno Exp $
DISTNAME= Test-Refcount-0.07
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/P/PE/PEVANS/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://metacpan.org/release/Test-Refcount
COMMENT= Assert reference counts on objects
LICENSE= ${PERL5_LICENSE}
BUILD_DEPENDS+= p5-Module-Build>=0.36:../../devel/p5-Module-Build
USE_LANGUAGES=
PERL5_MODULE_TYPE+= Module::Build
PERL5_PACKLIST+= auto/Test/Refcount/.packlist
PERL5_REQD+= 5.7.3 # Scalar::Util >= 0
PERL5_REQD+= 5.6.2 # Test::Builder >= 0
PERL5_REQD+= 5.5 # B >= 0
PERL5_REQD+= 5.6.2 # Test::More >= 0
PERL5_REQD+= 5.8.8 # Test::Builder::Tester >= 0
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"