This module is a 'Bare' XML parser. It is implemented in C. The parser itself is a simple state engine that is less than 500 lines of C. The parser builds a C struct tree from input text. That C struct tree is converted to a Perl hash by a Perl function that makes basic calls back to the C to go through the nodes sequentially.
20 lines
509 B
Makefile
20 lines
509 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2012/03/08 11:26:03 fhajny Exp $
|
|
#
|
|
|
|
DISTNAME= XML-Bare-0.47
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/XML-Bare/
|
|
COMMENT= Minimal XML parser implemented via a C state engine
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PERL5_PACKLIST= auto/XML/Bare/.packlist
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|