~ubuntu-branches/ubuntu/precise/ghc/precise

« back to all changes in this revision

Viewing changes to libraries/old-time/old-time.cabal

  • Committer: Bazaar Package Importer
  • Author(s): Joachim Breitner
  • Date: 2011-01-17 12:49:24 UTC
  • Revision ID: james.westby@ubuntu.com-20110117124924-do1pym1jlf5o636m
Tags: upstream-7.0.1
ImportĀ upstreamĀ versionĀ 7.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
name:           old-time
 
2
version:        1.0.0.6
 
3
license:        BSD3
 
4
license-file:   LICENSE
 
5
maintainer:     libraries@haskell.org
 
6
bug-reports: http://hackage.haskell.org/trac/ghc/newticket?component=libraries/old-time
 
7
synopsis:       Time library
 
8
category:       System
 
9
description:
 
10
        This package provides the old time library.
 
11
    For new code, the new time library is recommended.
 
12
build-type: Configure
 
13
extra-source-files:
 
14
        aclocal.m4
 
15
        config.guess config.sub install-sh
 
16
        configure.ac configure
 
17
        include/HsTimeConfig.h.in
 
18
extra-tmp-files:
 
19
        config.log config.status autom4te.cache
 
20
        include/HsTimeConfig.h
 
21
Cabal-Version: >= 1.6
 
22
 
 
23
Library
 
24
    exposed-modules:
 
25
        System.Time
 
26
    c-sources:
 
27
        cbits/timeUtils.c
 
28
    include-dirs: include
 
29
    includes:   HsTime.h
 
30
    install-includes:   HsTime.h HsTimeConfig.h
 
31
    extensions: CPP, ForeignFunctionInterface
 
32
    build-depends: base >= 3 && < 5, old-locale
 
33
    nhc98-options: -K2M
 
34
 
 
35
source-repository head
 
36
    type:     darcs
 
37
    location: http://darcs.haskell.org/packages/old-time/
 
38