mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 18:36:28 -04:00
Language::Expr defines a simple, Perl-like expression minilanguage. It supports mathematical and string operators, arrays, hashes, variables, and functions. See Language::Expr::Manual::Syntax for description of the language syntax. This distribution consists of the language parser (Language::Expr::Parser), some interpreters (Language::Expr::Interpreter::*), and some compilers (Language::Expr::Compiler::*).
30 lines
771 B
Makefile
30 lines
771 B
Makefile
PORTNAME= Language-Expr
|
|
PORTVERSION= 0.29
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Simple minilanguage for use in expression
|
|
WWW= https://metacpan.org/dist/Language-Expr
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS \
|
|
p5-Mo>=0:devel/p5-Mo \
|
|
p5-Nodejs-Util>=0.006:www/p5-Nodejs-Util \
|
|
p5-Regexp-Grammars>=1.005:devel/p5-Regexp-Grammars \
|
|
p5-Role-Tiny>=0:devel/p5-Role-Tiny \
|
|
p5-UUID-Tiny>=0:devel/p5-UUID-Tiny \
|
|
p5-boolean>=0.20:devel/p5-boolean
|
|
TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|