forked from vimus/libmpd-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libmpd.cabal
74 lines (65 loc) · 2.64 KB
/
libmpd.cabal
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Name: libmpd-p
Version: 0.7.0
License: LGPL
License-file: LICENSE
Copyright: Ben Sinclair 2005-2009, Joachim Fasting 2010, 2011
Author: Ben Sinclair
Maintainer: Joachim Fasting <[email protected]>
Stability: beta
Homepage: http://github.com/neovirtus/libmpd-haskell
Bug-reports: http://github.com/neovirtus/libmpd-haskell/issues
Synopsis: An MPD client library.
Description: A client library for MPD, the Music Player Daemon
(<http://www.musicpd.org/>).
Category: Network, Sound
Tested-With: GHC == 7.0.2
Build-Type: Simple
Cabal-Version: >= 1.6
Extra-Source-Files: README.md NEWS tests/Properties.hs
tests/Commands.hs tests/Main.hs tests/Displayable.hs
tests/run-tests.lhs tests/coverage.lhs
flag test
Description: Build test driver
Default: False
flag coverage
Description: Build driver with hpc instrumentation
Default: False
Source-Repository head
type: git
location: git://github.com/joachifm/libmpd-haskell.git
Library
Build-Depends: base >= 4 && < 5,
mtl >= 2.0 && < 2.1,
network >= 2.1 && < 2.4,
filepath >= 1.0 && < 1.3,
utf8-string >= 0.3.1 && < 0.4,
old-locale >= 1.0 && < 2.0,
time >= 1.1 && < 2.0,
containers >= 0.4 && < 0.5
Exposed-Modules: Network.MPD, Network.MPD.Commands.Extensions,
Network.MPD.Core
Other-Modules: Network.MPD.Core.Class,
Network.MPD.Core.Error,
Network.MPD.Commands,
Network.MPD.Commands.Arg,
Network.MPD.Commands.Parse,
Network.MPD.Commands.Query,
Network.MPD.Commands.Types,
Network.MPD.Commands.Util,
Network.MPD.Utils
ghc-prof-options: -auto-all -prof
if flag(test)
Buildable: False
Executable test
Hs-Source-Dirs: . tests
Main-Is: tests/Main.hs
Build-Depends: base ==4.*, network, mtl, filepath, utf8-string
-- Dependencies that are only required by the test-suite:
if flag(test)
Build-Depends: QuickCheck >= 2.1, time, containers
ghc-options: -Wall -fno-warn-warnings-deprecations
-fno-warn-type-defaults
if flag(coverage)
ghc-options: -fhpc
if !flag(test)
Buildable: False