mirror of
https://git.freebsd.org/ports.git
synced 2025-05-17 01:23:12 -04:00
(http://tools.ietf.org/html/rfc6901) and some useful operator from JSON Patch (http://tools.ietf.org/html/rfc6902). JSON Pointer is available to identify a specified value in JSON document, and it is simillar to XPath. Please read the both of specifications for details. WWW: http://search.cpan.org/dist/JSON-Pointer/
26 lines
561 B
Makefile
26 lines
561 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= JSON-Pointer
|
|
PORTVERSION= 0.06
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Perl extension of JSON Pointer (RFC6901)
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
RUN_DEPENDS= \
|
|
p5-Class-Accessor-Lite>=0.05:${PORTSDIR}/devel/p5-Class-Accessor-Lite \
|
|
p5-Clone>=0.36:${PORTSDIR}/devel/p5-Clone \
|
|
p5-JSON>=2.53:${PORTSDIR}/converters/p5-JSON \
|
|
p5-URI>=1.65:${PORTSDIR}/net/p5-URI
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= modbuild
|
|
NO_ARCH= YES
|
|
|
|
.include <bsd.port.mk>
|