flesh out description, explain why Readonly might be more useful than

constant, and that there is a secundary package that can speed things up.
This commit is contained in:
espie 2006-09-17 19:14:56 +00:00
parent 964e69a2f9
commit 29ab642009
2 changed files with 9 additions and 2 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.1.1.1 2006/06/25 12:45:03 espie Exp $
# $OpenBSD: Makefile,v 1.2 2006/09/17 19:14:56 espie Exp $
COMMENT= "create readonly variables"
DISTNAME= Readonly-1.03
PKGNAME= p5-${DISTNAME}
PKGNAME= p5-${DISTNAME}p0
CATEGORIES= devel perl5
# perl licence

View File

@ -1,2 +1,9 @@
create variables marked as read-only, applicable to scalar, list, hashes
and all sorts of recursive data-structures.
Use as an alternative to constant, the main difference is that Readonly
creates scalars and other variables that are much easier to interpolate
into strings and other contexts.
p5-Readonly auto-detects the arch-dependent package p5-Readonly-XS,
which is faster, and uses it if available.