File: simpleirc.cabal

package info (click to toggle)
haskell-simpleirc 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 88 kB
  • sloc: haskell: 607; makefile: 2
file content (57 lines) | stat: -rw-r--r-- 1,266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Name:          simpleirc
Version:       0.3.0
Category:      Network, IRC
Synopsis:      Simple IRC Library
Maintainer:    Dominik Picheta <dominikpicheta@googlemail.com>
Author:        Dominik Picheta <dominikpicheta@googlemail.com>
Copyright:     (c) 2010 Dominik Picheta
License:       BSD3
License-file:  license
Homepage: http://github.com/dom96/SimpleIRC  
Build-type:    Simple
Stability:     provisional
Cabal-version: >= 1.8
Description:
  Simple IRC Library. This IRC Library aims to be simple and lightweight.

Source-repository head
  Type:     git
  Location: git://github.com/dom96/SimpleIRC.git

Source-repository this
  Type:     git
  Location: git://github.com/dom96/SimpleIRC.git
  tag:      v0.3.0

Library
  Build-depends:
    base >= 4 && < 5,
    bytestring >= 0.9.1.7,
    network >= 2.2.1.5,
    containers >= 0.3.0.0,
    time >= 1.1.4,
    old-locale >= 1.0.0.2
  Exposed-modules:
    Network.SimpleIRC
    Network.SimpleIRC.Core
    Network.SimpleIRC.Messages
  ghc-options:
      -Wall

test-suite spec
  type:
      exitcode-stdio-1.0
  ghc-options:
      -Wall -Werror
  cpp-options:
      -DTEST
  hs-source-dirs:
      ., tests
  main-is:
      Spec.hs
  build-depends:
      base
    , bytestring
    , hspec
    , HUnit
    , knob