6257b0bf0d
Config::Grammar is a Perl module to parse configuration files by following a grammar, which specifies how the configuration file should look like. The configuration files are nice to work with for humans and the error messages are helpful because it tells right away that for example you are setting a variable which isn't defined. Config::Grammar supports many advanced features, that you can read about in its documentation.
23 lines
492 B
Makefile
23 lines
492 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/05/22 12:41:29 bernd Exp $
|
|
|
|
COMMENT= "grammar-based, user-friendly config parser"
|
|
|
|
DISTNAME= Config-Grammar-1.02
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Bernd Ahlers <bernd@openbsd.org>
|
|
|
|
# Same as perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Config/}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|