-
Notifications
You must be signed in to change notification settings - Fork 0
/
escape-from-itunes.cabal
59 lines (55 loc) · 2.06 KB
/
escape-from-itunes.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
name: escape-from-itunes
version: 0.1.0.0
synopsis: Copy iTunes Music Library to sane file hierarchy
description: Copy iTunes Music Library to sane file hierarchy
homepage: https://github.com/shterrett/escape-from-itunes#readme
license: MIT
license-file: LICENSE
author: Stuart Terrett
maintainer: [email protected]
copyright: Copyright 2018 Stuart Terrett
category: terminal
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Itunes
, Args
, Attributes
, Actions
build-depends: base >= 4.7 && < 5
, idiii == 0.1.3.3
, optparse-applicative == 0.14.3.0
, regex-compat == 0.95.1
, data-accessor == 0.2.2.8
, directory == 1.3.3.1
, filepath == 1.4.2
, stm == 2.5.0.0
default-language: Haskell2010
executable escape-from-itunes
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, escape-from-itunes
, optparse-applicative == 0.14.3.0
, async == 2.2.1
, BoundedChan == 1.0.3.0
default-language: Haskell2010
test-suite escape-from-itunes-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: ArgsSpec
, ItunesSpec
build-depends: base
, escape-from-itunes
, hspec
, QuickCheck
, optparse-applicative == 0.14.3.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/shterrett/escape-from-itunes