forked from Lainports/freebsd-ports
nokogiri-diff adds the ability to calculate the differences (added or removed nodes) between two XML/HTML documents. Features: - Performs a breadth-first comparison between children nodes. - Compares XML/HTML Elements, Attributes, Text nodes and DTD nodes. - Allows calculating differences between documents, or just enumerating the added or removed nodes. WWW: https://github.com/postmodern/nokogiri-diff RG: https://rubygems.org/gems/nokogiri-diff
21 lines
486 B
Makefile
21 lines
486 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nokogiri-diff
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= textproc rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Calculate the differences between two XML/HTML documents
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= rubygem-nokogiri>=1.5:${PORTSDIR}/textproc/rubygem-nokogiri \
|
|
rubygem-tdiff>=0.3.2:${PORTSDIR}/devel/rubygem-tdiff
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|