~ubuntu-branches/ubuntu/intrepid/hdbc-sqlite3/intrepid

« back to all changes in this revision

Viewing changes to HDBC-sqlite3.cabal

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2008-06-26 09:20:21 UTC
  • mfrom: (3.1.5 hardy)
  • Revision ID: james.westby@ubuntu.com-20080626092021-1bz6dtxt36oczx7e
Tags: 1.1.4.0.1
Rebuild with newer HDBC.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Extra-Libraries: sqlite3
2
1
Name: HDBC-sqlite3
3
 
Version: 1.0.1.1
 
2
Version: 1.1.4.0
4
3
License: LGPL
5
4
Maintainer: John Goerzen <jgoerzen@complete.org>
6
 
Stability: Alpha
7
 
Copyright: Copyright (c) 2005-2006 John Goerzen
8
 
Exposed-Modules: Database.HDBC.Sqlite3
9
 
Other-Modules: Database.HDBC.Sqlite3.Connection,
10
 
 Database.HDBC.Sqlite3.Statement,
11
 
 Database.HDBC.Sqlite3.Types,
12
 
 Database.HDBC.Sqlite3.Utils
13
 
--Extensions: ExistentialQuantification, AllowOverlappingInstances,
14
 
Extensions: ExistentialQuantification
15
 
C-Sources: hdbc-sqlite3-helper.c
16
 
Build-Depends: base, mtl, HDBC>=0.99.2
17
 
include-dirs: .
18
 
GHC-Options: -O2
 
5
Author: John Goerzen
 
6
Copyright: Copyright (c) 2005-2007 John Goerzen
 
7
license-file: COPYRIGHT
 
8
extra-source-files: COPYING, hdbc-sqlite3-helper.h
 
9
homepage: http://software.complete.org/hdbc-sqlite3
 
10
synopsis: Sqlite v3 driver for HDBC
 
11
Description: This is the Sqlite v3 driver for HDBC, the generic
 
12
 database access system for Haskell
 
13
Stability: Stable
 
14
Build-Type: Simple
 
15
Cabal-Version: >=1.2
 
16
 
 
17
Flag splitBase
 
18
  description: Choose the new smaller, split-up package.
 
19
 
 
20
Library
 
21
  if flag(splitBase)
 
22
    Build-Depends: base>=3, bytestring
 
23
  else
 
24
    Build-Depends: base<3
 
25
  Build-Depends: mtl, HDBC>=1.1.0
 
26
 
 
27
  C-Sources: hdbc-sqlite3-helper.c
 
28
  include-dirs: .
 
29
  GHC-Options: -fglasgow-exts
 
30
  Extra-Libraries: sqlite3
 
31
  Exposed-Modules: Database.HDBC.Sqlite3
 
32
  Other-Modules: Database.HDBC.Sqlite3.Connection,
 
33
   Database.HDBC.Sqlite3.ConnectionImpl,
 
34
   Database.HDBC.Sqlite3.Statement,
 
35
   Database.HDBC.Sqlite3.Types,
 
36
   Database.HDBC.Sqlite3.Utils,
 
37
   Database.HDBC.Sqlite3.Consts
 
38
  --Extensions: ExistentialQuantification, AllowOverlappingInstances,
 
39
  --    AllowUndecidableInstances, CPP
 
40
  Extensions: ExistentialQuantification,
 
41
              ForeignFunctionInterface