]> gitweb @ CieloNegro.org - bindings-apr.git/blob - bindings-apr.cabal
more bindings
[bindings-apr.git] / bindings-apr.cabal
1 Name: bindings-apr
2 Synopsis: Low level bindings to Apache Portable Runtime (APR)
3 Description:
4         Bindings to APR: <http://apr.apache.org/>
5 Version: 0.1
6 License: PublicDomain
7 License-File: COPYING
8 Author: PHO <pho at cielonegro dot org>
9 Maintainer: PHO <pho at cielonegro dot org>
10 Stability: experimental
11 Homepage: http://cielonegro.org/Bindings-APR.html
12 Category: FFI
13 Tested-With: GHC == 6.12.3
14 Cabal-Version: >= 1.6
15 Build-Type: Simple
16 Extra-Source-Files:
17
18 Source-Repository head
19     Type: git
20     Location: git://git.cielonegro.org/bindings-apr.git
21
22 Library
23     Build-Depends:
24         base         == 4.2.*,
25         bindings-DSL == 1.0.*
26
27     PkgConfig-Depends:
28         apr-1 >= 1.3
29
30     Exposed-Modules:
31         Bindings.APR
32         Bindings.APR.Allocator
33         Bindings.APR.Allocator.Types
34         Bindings.APR.Errno
35         Bindings.APR.Pools
36         Bindings.APR.Thread.Mutex
37
38     C-Sources:
39         cbits/helper_apr_errno.c
40         cbits/helper_apr_pools.c
41
42     Extensions:
43         ForeignFunctionInterface