646d7801f3
The Haskell XML Toolbox bases on the ideas of HaXml and HXML, but introduces a more general approach for processing XML with Haskell. The Haskell XML Toolbox uses a generic data model for representing XML documents, including the DTD subset and the document subset, in Haskell. It contains a validating XML parser, a HTML parser, namespace support, an XPath expression evaluator, an XSLT library, a RelaxNG schema validator and funtions for serialization and deserialization of user defined data. The library makes extensive use of the arrow approach for processing XML. Since version 9 the toolbox is partitioned into various (sub-)packages. This package contains the core functionality, hxt-curl, hxt-tagsoup, hxt-relaxng, hxt-xpath, hxt-xslt, hxt-regex-xmlschema contain the extensions. hxt-unicode contains encoding and decoding functions, hxt-charproperties char properties for unicode and XML.
19 lines
623 B
Makefile
19 lines
623 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2020/01/17 16:21:37 pho Exp $
|
|
|
|
BUILDLINK_TREE+= hs-hxt
|
|
|
|
.if !defined(HS_HXT_BUILDLINK3_MK)
|
|
HS_HXT_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.hs-hxt+= hs-hxt>=9.3.1
|
|
BUILDLINK_ABI_DEPENDS.hs-hxt+= hs-hxt>=9.3.1.18
|
|
BUILDLINK_PKGSRCDIR.hs-hxt?= ../../textproc/hs-hxt
|
|
|
|
.include "../../textproc/hs-hxt-charproperties/buildlink3.mk"
|
|
.include "../../textproc/hs-hxt-regex-xmlschema/buildlink3.mk"
|
|
.include "../../textproc/hs-hxt-unicode/buildlink3.mk"
|
|
.include "../../net/hs-network/buildlink3.mk"
|
|
.include "../../net/hs-network-uri/buildlink3.mk"
|
|
.endif # HS_HXT_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -hs-hxt
|