]> gitweb @ CieloNegro.org - bindings-apr.git/blob - bindings-apr.cabal
Bindings.APR.Lib
[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.AnyLock
35         Bindings.APR.Atomic
36         Bindings.APR.DSO
37         Bindings.APR.Env
38         Bindings.APR.ErrNo
39         Bindings.APR.File.IO
40         Bindings.APR.File.Info
41         Bindings.APR.File.Types
42         Bindings.APR.FNMatch
43         Bindings.APR.General
44         Bindings.APR.GetOpt
45         Bindings.APR.Global.Mutex
46         Bindings.APR.Hash
47         Bindings.APR.Lib
48         Bindings.APR.Pools
49         Bindings.APR.Proc.Mutex
50         Bindings.APR.Tables
51         Bindings.APR.Thread.Mutex
52         Bindings.APR.Thread.RWLock
53         Bindings.APR.Time
54         Bindings.APR.User
55         Bindings.APR.Want
56
57     C-Sources:
58 --        cbits/helper_apr_anylock.c
59         cbits/helper_apr_errno.c
60         cbits/helper_apr_general.c
61         cbits/helper_apr_pools.c
62         cbits/helper_apr_lib.c
63         cbits/helper_apr_time.c
64         cbits/helper_apr_user.c
65
66     Extensions:
67         ForeignFunctionInterface