f134d4bd96
This module in an fully object-oriented implementation of a simple n-ary tree. It is built upon the concept of parent-child relationships, so therefore every Tree::Simple object has both a parent and a set of children (who themselves may have children, and so on). Every Tree::Simple object also has siblings, as they are just the children of their immediate parent.
27 lines
524 B
Makefile
27 lines
524 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/22 02:18:40 msf Exp $
|
|
|
|
COMMENT= "A simple tree object"
|
|
|
|
DISTNAME= Tree-Simple-1.14
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Tree/}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
REGRESS_DEPENDS= ::devel/p5-Test-Exception \
|
|
::devel/p5-Test-Memory-Cycle
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|