1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
name: libxml-sax
version: 0.7.5
license: MIT
license-file: license.txt
author: John Millikin
maintainer: jmillikin@gmail.com
build-type: Simple
cabal-version: >= 1.6
category: Foreign, Text, XML, Parsing
stability: experimental
homepage: https://john-millikin.com/software/haskell-libxml/
bug-reports: mailto:jmillikin@gmail.com
synopsis: Bindings for the libXML2 SAX interface
description:
extra-source-files:
cbits/hslibxml-shim.c
cbits/hslibxml-shim.h
source-repository head
type: git
location: https://john-millikin.com/code/haskell-libxml-sax/
source-repository this
type: git
location: https://john-millikin.com/code/haskell-libxml-sax/
tag: haskell-libxml-sax_0.7.5
library
hs-source-dirs: lib
ghc-options: -Wall -O2
cc-options: -Wall
build-depends:
base >= 4.1 && < 5.0
, bytestring >= 0.9
, text >= 0.7
, xml-types >= 0.3 && < 0.4
exposed-modules:
Text.XML.LibXML.SAX
c-sources: cbits/hslibxml-shim.c
extra-libraries: xml2
pkgconfig-depends: libxml-2.0
|