forked from fosskers/aura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aura.cabal
101 lines (84 loc) · 3.17 KB
/
aura.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: aura
version: 1.2.3.1
synopsis: A secure package manager for Arch Linux and the AUR, written in Haskell.
description: `aura` is a package manager for Arch Linux written
in Haskell. It connects to both the official Arch
repostitories and to the AUR, allowing easy control
of all packages on an Arch system.
It allows _all_ pacman operations and provides _new_
custom ones for dealing with AUR packages.
This differs from some other AUR package managers.
homepage: https://github.com/fosskers/aura
license: GPL-3
license-file: LICENSE
author: Colin Woodbury
maintainer: [email protected]
category: System
build-type: Simple
cabal-version: >=1.8
extra-source-files: aura.8,
completions/bashcompletion.sh,
completions/_aura
source-repository head
type: git
location: git://github.com/fosskers/aura.git
executable aura
ghc-options: -Wall
main-is: aura.hs
other-modules: Shell,
Internet,
Utilities,
Data.Algorithm.Diff,
Network.HTTP,
Aura.Bash,
Aura.Core,
Aura.Diff,
Aura.Logo,
Aura.Time,
Aura.Build,
Aura.Cache,
Aura.Flags,
Aura.Install,
Aura.Shell,
Aura.State,
Aura.Utils,
Aura.Pacman,
Aura.MakePkg,
Aura.Conflicts,
Aura.Languages,
Aura.Monad.Aura,
Aura.Dependencies,
Aura.Colour.Text,
Aura.Packages.ABS,
Aura.Packages.AUR,
Aura.Packages.Repository,
Aura.Commands.A,
Aura.Commands.B,
Aura.Commands.C,
Aura.Commands.L,
Aura.Commands.O,
Aura.Commands.M,
Aura.Pkgbuild.Base,
Aura.Pkgbuild.Records,
Aura.Pkgbuild.Editing,
Aura.Settings.Base,
Aura.Settings.Enable,
Bash.Base,
Bash.Parser,
Bash.Simplify
build-depends: mtl,
json,
time,
unix,
array,
parsec,
process,
filepath,
directory,
temporary,
containers,
bytestring,
regex-pcre,
transformers,
http-conduit,
base >= 4.6 && < 5