-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcabal-meta.cabal
62 lines (50 loc) · 1.7 KB
/
cabal-meta.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
name: cabal-meta
version: 0.4.1.3
license: BSD3
license-file: LICENSE
author: Greg Weber <[email protected]>
maintainer: Greg Weber <[email protected]>
synopsis: build multiple packages at once
description: see: <http://www.yesodweb.com/blog/2012/04/cabal-meta> and <http://github.com/yesodweb/cabal-meta>
stability: Beta
cabal-version: >= 1.8
build-type: Simple
homepage: http://www.yesodweb.com/
category: Development
flag ghc7
Library
if flag(ghc7)
build-depends: base >= 4.3 && < 5
cpp-options: -DGHC7
else
build-depends: base >= 4 && < 4.3
build-depends: shelly >= 1.0 && < 2
, text, system-filepath
-- , file-location
extensions: OverloadedStrings
exposed-modules: CabalMeta
executable cabal-meta
main-is: main.hs
if flag(ghc7)
build-depends: base >= 4.3 && < 5
cpp-options: -DGHC7
else
build-depends: base >= 4 && < 4.3
build-depends: shelly >= 1.0 && < 2
, text, system-filepath, system-fileio
-- , file-location
ghc-options: -Wall
other-modules: OmniConfig
extensions: OverloadedStrings
test-suite test
main-is: test/main.hs
hs-source-dirs: .
type: exitcode-stdio-1.0
build-depends: shelly >= 1.0 && < 2
, hspec >= 1.3, unix, base, text, system-filepath
-- , file-location
extensions: OverloadedStrings , CPP
cpp-options: -DTEST
source-repository head
type: git
location: https://github.com/yesodweb/cabal-meta