forked from kazu-yamamoto/cab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cab.cabal
53 lines (52 loc) · 1.87 KB
/
cab.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
Name: cab
Version: 0.1.13
Author: Kazu Yamamoto <[email protected]>
Maintainer: Kazu Yamamoto <[email protected]>
License: BSD3
License-File: LICENSE
Synopsis: A maintenance command of Haskell cabal packages
Description: This is a MacPorts-like maintenance command of
Haskell cabal packages. Some part of this program is a wrapper to
"ghc-pkg" and "cabal".
If you are always confused due to inconsistency of two commands,
or if you want a way to check all outdated packages,
or if you want a way to remove outdated packages recursively,
this command helps you.
Homepage: http://www.mew.org/~kazu/proj/cab/
Category: Distribution
Cabal-Version: >= 1.6
Build-Type: Simple
Executable cab
Main-Is: Main.hs
if impl(ghc >= 6.12)
GHC-Options: -Wall -fno-warn-unused-do-bind
else
GHC-Options: -Wall
Build-Depends: base >= 4.0 && < 5
, Cabal
, attoparsec >= 0.10
, attoparsec-conduit >= 0.3
, bytestring
, conduit >= 0.3
, containers
, directory
, filepath
, process
, process-conduit >= 0.1
if os(windows)
Build-Depends:
else
Build-Depends: unix
Other-Modules: CmdDB
Commands
Env
GenPaths
PkgDB
Program
Types
Utils
VerDB
Paths_cab
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/cab.git