2010-01-29 19:52:35 +01:00
|
|
|
# $NetBSD: Makefile,v 1.3 2010/01/29 18:52:35 joerg Exp $
|
Initial import of hugs-HaXml, version 1.15.20060515:
HaXml is a collection of utilities for parsing, filtering, transforming
and generating XML documents using Haskell. Its basic facilities include:
* A parser for XML.
* A separate error-correcting parser for HTML.
* An XML validator.
* Pretty-printers for XML and HTML.
For processing XML documents, the following components are provided:
* Combinators is a combinator library for generic XML document processing,
including transformation, editing, and generation.
* Haskell2Xml is a replacement class for Haskell's Show/Read classes: it
allows you to read and write ordinary Haskell data as XML documents.
The DrIFT tool can automatically derive this class for you.
* DtdToHaskell is a tool for translating any valid XML DTD into equivalent
Haskell types.
* In conjunction with the Xml2Haskell class framework, this allows you to
generate, edit, and transform documents as normal typed values in programs,
and to read and write them as human-readable XML documents.
* Finally, Xtract is a grep-like tool for XML documents, loosely based on
the XPath and XQL query languages. It can be used either from the
command-line, or within your own code as part of the library.
2006-08-04 16:42:15 +02:00
|
|
|
#
|
|
|
|
|
2007-03-07 13:51:16 +01:00
|
|
|
DISTNAME= HaXml-1.17.20060921
|
Initial import of hugs-HaXml, version 1.15.20060515:
HaXml is a collection of utilities for parsing, filtering, transforming
and generating XML documents using Haskell. Its basic facilities include:
* A parser for XML.
* A separate error-correcting parser for HTML.
* An XML validator.
* Pretty-printers for XML and HTML.
For processing XML documents, the following components are provided:
* Combinators is a combinator library for generic XML document processing,
including transformation, editing, and generation.
* Haskell2Xml is a replacement class for Haskell's Show/Read classes: it
allows you to read and write ordinary Haskell data as XML documents.
The DrIFT tool can automatically derive this class for you.
* DtdToHaskell is a tool for translating any valid XML DTD into equivalent
Haskell types.
* In conjunction with the Xml2Haskell class framework, this allows you to
generate, edit, and transform documents as normal typed values in programs,
and to read and write them as human-readable XML documents.
* Finally, Xtract is a grep-like tool for XML documents, loosely based on
the XPath and XQL query languages. It can be used either from the
command-line, or within your own code as part of the library.
2006-08-04 16:42:15 +02:00
|
|
|
CATEGORIES= textproc
|
|
|
|
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
|
|
COMMENT= Haskell utilities for managing and generating XML documents
|
|
|
|
HOMEPAGE= http://www.cs.york.ac.uk/fp/HaXml/
|
|
|
|
|
2010-01-29 19:52:35 +01:00
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
|
Initial import of hugs-HaXml, version 1.15.20060515:
HaXml is a collection of utilities for parsing, filtering, transforming
and generating XML documents using Haskell. Its basic facilities include:
* A parser for XML.
* A separate error-correcting parser for HTML.
* An XML validator.
* Pretty-printers for XML and HTML.
For processing XML documents, the following components are provided:
* Combinators is a combinator library for generic XML document processing,
including transformation, editing, and generation.
* Haskell2Xml is a replacement class for Haskell's Show/Read classes: it
allows you to read and write ordinary Haskell data as XML documents.
The DrIFT tool can automatically derive this class for you.
* DtdToHaskell is a tool for translating any valid XML DTD into equivalent
Haskell types.
* In conjunction with the Xml2Haskell class framework, this allows you to
generate, edit, and transform documents as normal typed values in programs,
and to read and write them as human-readable XML documents.
* Finally, Xtract is a grep-like tool for XML documents, loosely based on
the XPath and XQL query languages. It can be used either from the
command-line, or within your own code as part of the library.
2006-08-04 16:42:15 +02:00
|
|
|
.include "../../lang/hugs/package.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|