]> 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.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.Pools
43         Bindings.APR.Proc.Mutex
44         Bindings.APR.Tables
45         Bindings.APR.Thread.Mutex
46         Bindings.APR.Thread.RWLock
47         Bindings.APR.Time
48         Bindings.APR.User
49         Bindings.APR.Want
50
51     C-Sources:
52 --        cbits/helper_apr_anylock.c
53         cbits/helper_apr_errno.c
54         cbits/helper_apr_pools.c
55         cbits/helper_apr_time.c
56         cbits/helper_apr_user.c
57
58     Extensions:
59         ForeignFunctionInterface