-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbillboard-parser.cabal
More file actions
70 lines (62 loc) · 2.85 KB
/
billboard-parser.cabal
File metadata and controls
70 lines (62 loc) · 2.85 KB
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
name: billboard-parser
version: 1.2.1.0
synopsis: A parser for the Billboard chord dataset
description: We present a parser for the world famous Billboard dataset
containing the chord transcriptions of over 1000
professional chord transcriptions of popular music randomly
selected from /Billboard/ magazine's ``Hot 100'' chart
between 1958 and 1991, all time-aligned with audio.
.
See: W. Bas de Haas and John Ashley Burgoyne,
/Parsing the Billboard Chord Transcriptions/, Technical Report
UU-CS-2012-018, Department of Information and Computing
Sciences, Utrecht University, 2012.
(<http://www.cs.uu.nl/research/techreps/repo/CS-2012/2012-018.pdf>)
.
And: John Ashley Burgoyne, Jonathan Wild, Ichiro Fujinaga,
/An Expert Ground-Truth Set for Audio Chord Recognition and Music Analysis/,
In: Proceedings of International
Conference on Music Information Retrieval, 2011.
(<http://ismir2011.ismir.net/papers/OS8-1.pdf>)
homepage: http://ddmal.music.mcgill.ca/billboard
license: LGPL-3
license-file: LICENSE
author: W. Bas de Haas
maintainer: W. Bas de Haas <bash@cs.uu.nl>
copyright: (c) 2012--2013 Utrecht University
category: Music
build-type: Simple
tested-with: GHC == 7.4.1, GHC == 7.6.1
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.8
library
build-depends: base >=4.5,
directory >=1.1,
filepath >=1.3,
uu-parsinglib ==2.9.*,
ListLike >=3.1,
HUnit >=1.2,
-- mtl ==2.1.*,
HarmTrace-Base >= 1.5
exposed-modules: Billboard.Annotation
Billboard.BeatBar
Billboard.BillboardData
Billboard.BillboardParser
Billboard.IOUtils
other-modules: Billboard.Tests
Billboard.Internal
ghc-options: -Wall
-O2
executable billboard-parser
main-is: Main.hs
build-depends: base >=4.5,
parseargs >=0.1,
directory >=1.1,
filepath >=1.3,
uu-parsinglib ==2.9.*,
ListLike >=3.1,
HUnit >=1.2,
-- mtl ==2.1.*,
HarmTrace-Base >= 1.5
ghc-options: -Wall
-O2