09c36754e6
Regexp::Assemble takes an arbitrary number of regular expressions and assembles them into a single regular expression (or RE) that matches all that the individual REs match. As a result, instead of having a large list of expressions to loop over, a target string only needs to be tested against one expression. This is interesting when you have several thousand patterns to deal with. Serious effort is made to produce the smallest pattern possible.
20 lines
415 B
Makefile
20 lines
415 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/02/05 22:05:02 simon Exp $
|
|
|
|
COMMENT = assemble multiple Regular Expressions into a single RE
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Regexp-Assemble-0.34
|
|
CATEGORIES = textproc
|
|
|
|
MAINTAINER = Simon Bertrang <simon@openbsd.org>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MAKE_ENV += TEST_POD=1
|
|
|
|
.include <bsd.port.mk>
|