-
Notifications
You must be signed in to change notification settings - Fork 4
/
abcnotation.cabal
executable file
·36 lines (32 loc) · 1.24 KB
/
abcnotation.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
name: abcnotation
version: 1.9.2
synopsis: Haskell representation and parser for ABC notation.
author: Hans Hoglund
maintainer: Hans Hoglund
license: BSD3
license-file: COPYING
category: Music
tested-with: GHC
build-type: Simple
cabal-version: >= 1.10
description:
This package contains a Haskell representation and parser for ABC notation.
.
ABC notation is a text-based music notation system designed to be comprehensible by both people and
computers. For more information see <http://abcnotation.com>.
.
Based on the 2.1 standard.
source-repository head
type: git
location: git://github.com/music-suite/abcnotation.git
library
exposed-modules: Data.Music.Abc
Data.Music.Abc.Parser
build-depends: base >= 4 && < 5,
semigroups >= 0.13.0.1 && < 1,
prettify,
parsec,
-- debug
process >= 1.2 && < 1.3
hs-source-dirs: src
default-language: Haskell2010